mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 17:50:22 +00:00
The two samples are for two different UnrealScript generations: MutU2Weapons is UnrealScript 2, US3HelloWorld is UnrealScript 3. Signed-off-by: GreatEmerald <pastas4@gmail.com>
11 lines
147 B
Ucode
11 lines
147 B
Ucode
class US3HelloWorld extends GameInfo;
|
|
|
|
event InitGame( string Options, out string Error )
|
|
{
|
|
`log( "Hello, world!" );
|
|
}
|
|
|
|
defaultproperties
|
|
{
|
|
}
|