home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Unreal Tournament Game Programming for Teens
/
UnrealTournamentGameProgrammingForTeens.iso
/
Chapter Files
/
Chapter04
/
UT2004
/
Ch04Area
/
Classes
/
StandUpTrigger.uc
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
2006-10-23
|
375 b
|
19 lines
//===============================================================
// StandUpTrigger.
//===============================================================
class StandUpTrigger extends Trigger placeable;
//#1
var (Message) string StandUpMessage;
function PostBeginPlay(){
Super.PostBeginPlay();
//#2
Message = StandUpMessage;
}
defaultproperties
{
}