Add initial UnrealScript support

The two samples are for two different UnrealScript generations:
MutU2Weapons is UnrealScript 2, US3HelloWorld is UnrealScript 3.

Signed-off-by: GreatEmerald <pastas4@gmail.com>
This commit is contained in:
GreatEmerald
2013-11-09 15:29:59 +02:00
parent eb5f1468d2
commit 12086b69ac
3 changed files with 660 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
class US3HelloWorld extends GameInfo;
event InitGame( string Options, out string Error )
{
`log( "Hello, world!" );
}
defaultproperties
{
}