Codebase list ohcount / d4c3f612-6685-4dc0-9339-5433a0a275c0/main test / src_dir / unrealscript.uc
d4c3f612-6685-4dc0-9339-5433a0a275c0/main

Tree @d4c3f612-6685-4dc0-9339-5433a0a275c0/main (Download .tar.gz)

unrealscript.uc @d4c3f612-6685-4dc0-9339-5433a0a275c0/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
}