Codebase list ohcount / lintian-fixes/main test / detect_files / foo.uc
lintian-fixes/main

Tree @lintian-fixes/main (Download .tar.gz)

foo.uc @lintian-fixes/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
}