home *** CD-ROM | disk | FTP | other *** search
/ UnrealScript Game Programming All in One / UnrealScriptGameProgrammingAllInOne.iso / UGPAIOListings / UGPAIOListingsCh06 / HelloWorld / Classes / HelloWorldTwo.uc < prev   
Encoding:
Text File  |  2006-01-22  |  248 b   |  16 lines

  1. // %PARAMETERS = "HelloWorld C:\UT2004"
  2. // Identifies the package
  3.  
  4.  
  5. class HelloWorldTwo extends Commandlet;
  6.  
  7. function int Main(string Args)
  8. {
  9.   log("*************");
  10.  
  11.   log("Hello World Two!");
  12.   log("*************");
  13.  
  14.   return 0;
  15. }
  16.