-
Notifications
You must be signed in to change notification settings - Fork 2
/
Globals.cs
40 lines (35 loc) · 1.02 KB
/
Globals.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
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ZXNTCount
{
public enum SpaceType
{
Space,
Tab
};
class Globals
{
public static string Version = "v1.1.5";
public class FileNames
{
public static string ConfigIni = Path.Combine(Application.StartupPath, "ZXNTCount.ini");
public static string InstructionsIni = Path.Combine(Application.StartupPath, "Instructions.ini");
}
}
public class Settings
{
public static bool TCount = true;
public static bool ByteCount = false;
public static bool Flags = false;
public static bool Comments = true;
public static bool Description = false;
public static SpaceType InstructionSeparator = SpaceType.Space;
public static SpaceType IndentType = SpaceType.Space;
public static int IndentSpaceCount = 4;
}
}