Skip to content

Commit f9db647

Browse files
committed
Add Core, Object.uc
1 parent bcd0524 commit f9db647

5 files changed

Lines changed: 2443 additions & 0 deletions

File tree

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// CHL: We can't create templates in Core, so we use this to create the template in XComGame
2+
class CHCoreVersion extends Object;
3+
4+
var int MajorVersion;
5+
var int MinorVersion;
6+
var int PatchVersion;
7+
var string Commit;
8+
9+
// AUTO-CODEGEN: Version-Info
10+
defaultproperties
11+
{
12+
MajorVersion = 1;
13+
MinorVersion = 20;
14+
PatchVersion = 0;
15+
Commit = "RC1";
16+
}

0 commit comments

Comments
 (0)