Codebase list ohcount / run/8fccc97f-1091-4606-8a80-1b8fb386766a/main test / src_dir / unrealscript.uc
run/8fccc97f-1091-4606-8a80-1b8fb386766a/main

Tree @run/8fccc97f-1091-4606-8a80-1b8fb386766a/main (Download .tar.gz)

unrealscript.uc @run/8fccc97f-1091-4606-8a80-1b8fb386766a/main

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
}