Codebase list ohcount / a828f03c-a62e-49d7-b2ec-6e6df59903d2/main test / src_dir / unrealscript.uc
a828f03c-a62e-49d7-b2ec-6e6df59903d2/main

Tree @a828f03c-a62e-49d7-b2ec-6e6df59903d2/main (Download .tar.gz)

unrealscript.uc @a828f03c-a62e-49d7-b2ec-6e6df59903d2/mainraw · 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
}