Codebase list ohcount / upstream/3.1.1 test / src_dir / unrealscript.uc
upstream/3.1.1

Tree @upstream/3.1.1 (Download .tar.gz)

unrealscript.uc @upstream/3.1.1raw · history · blame

class foo extends Actor;

/** An UnrealScript 3 styled comment. */
var bool bFoo;

simulated function PostBeginPlay()
{
    // Comment
    log(self@"Hello World! Foo is"@bFoo); // Another comment
    /* A
    block
    comment */
    Super.PostBeginPlay();
}

defaultproperties
{
    bFoo = true
}