Revision: | 45 |
Committed: | Wed May 9 12:45:13 2012 UTC (11 years, 4 months ago) by william |
File size: | 431 byte(s) |
Log Message: |
# | User | Rev | Content |
---|---|---|---|
1 | william | 45 | using System; |
2 | using System.Collections.Generic; | ||
3 | using System.Linq; | ||
4 | using System.Text; | ||
5 | |||
6 | namespace RomCheater.VersionSupport | ||
7 | { | ||
8 | internal class VersionConstants | ||
9 | { | ||
10 | public const string MAJOR = "1"; | ||
11 | public const string MINOR = "0"; | ||
12 | public const string BUILD = "0"; | ||
13 | #if DEBUG | ||
14 | public const string TAG = "debug"; | ||
15 | #else | ||
16 | public const string TAG = "release"; | ||
17 | #endif | ||
18 | } | ||
19 | } |