-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
27 lines (25 loc) · 942 Bytes
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
using System;
using System.Drawing;
using System.Windows.Forms;
namespace Horus
{
static class Program
{
public static Int32 MaxStreams = 4;
public static String LogInToken = "";
public static String Server = "https://server1.proyectohorus.com.ar"; //"server1.proyectohorus.com.ar";
public static String User = "";
public static String Password = "";
public static Boolean IsHide = false;
public static Boolean NeedChange = false;
public static Boolean MiniVisor_visible = false;
public static Image[] PreviewMatrix = new Image[MaxStreams];
public static Boolean[] Slots = new Boolean[MaxStreams];
[STAThread]
static void Main() {
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Landing());
}
}
}