Codebase list ohcount / upstream/4.0.0+git20210223.6654d48 test / src_dir / unrealscript.uc
upstream/4.0.0+git20210223.6654d48

Tree @upstream/4.0.0+git20210223.6654d48 (Download .tar.gz)

unrealscript.uc @upstream/4.0.0+git20210223.6654d48

3c3c2f4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
}