Codebase list ohcount / d62f219c-a984-415f-b69c-f521b00b8f15/main test / src_dir / unrealscript.uc
d62f219c-a984-415f-b69c-f521b00b8f15/main

Tree @d62f219c-a984-415f-b69c-f521b00b8f15/main (Download .tar.gz)

unrealscript.uc @d62f219c-a984-415f-b69c-f521b00b8f15/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
}