forked from ReClassNET/ReClass.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConstants.cs
More file actions
31 lines (21 loc) · 753 Bytes
/
Constants.cs
File metadata and controls
31 lines (21 loc) · 753 Bytes
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
namespace ReClassNET
{
class Constants
{
public const string ApplicationName = "ReClass.NET";
public const string ApplicationVersion = "1.0.1";
public const string Author = "KN4CK3R";
public const string HomepageUrl = "https://github.com/KN4CK3R/ReClass.NET";
public const string HelpUrl = "https://github.com/KN4CK3R/ReClass.NET/issues";
public const string PluginUrl = "https://github.com/KN4CK3R/ReClass.NET#plugins";
#if WIN64
public const string Platform = "x64";
public const string StringHexFormat = "X016";
#else
public const string Platform = "x86";
public const string StringHexFormat = "X08";
#endif
public const string SettingsFile = "settings.xml";
public const string PluginsFolder = "Plugins";
}
}