home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
UnrealScript Game Programming All in One
/
UnrealScriptGameProgrammingAllInOne.iso
/
UGPAIOListings
/
UGPAIOListingsCh06
/
HelloWorld
/
Classes
/
HelloWorldTwo.uc
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2006-01-22
|
248 b
|
16 lines
// %PARAMETERS = "HelloWorld C:\UT2004"
// Identifies the package
class HelloWorldTwo extends Commandlet;
function int Main(string Args)
{
log("*************");
log("Hello World Two!");
log("*************");
return 0;
}