-
Notifications
You must be signed in to change notification settings - Fork 0
/
Status.cs
45 lines (28 loc) · 929 Bytes
/
Status.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;
namespace GBusManager
{
static class Status
{
public static bool newset;
public static Misc.Mode mode = Misc.Mode.Point;
public static int x1;
public static int y1;
public static Point s;
public static ArrayList Routes = new ArrayList();
public static ArrayList Points = new ArrayList();
public static ArrayList Edges = new ArrayList();
public static ToolsPanel tp;
public static GraphCreator graphcreator;
public static int x;
public static int y;
public static String crs;
public static bool DEBUG = false;
public static bool ElEd = true;
public static Points myPoints = new Points(10);
public static Routes myRoutes = new Routes(10);
}
}