home *** CD-ROM | disk | FTP | other *** search
/ UnrealScript Game Programming All in One / UnrealScriptGameProgrammingAllInOne.iso / UGPAIOListings / UGPAIOListingsCh20 / CH20LIST / Classes / CH20_01LIST.uc < prev    next >
Encoding:
Text File  |  2006-02-26  |  513 b   |  21 lines

  1. // %PARAMETERS = "CH20LIST C:\UT2004"
  2. //Identifies the package
  3. //CH20_01LIST.uc
  4. //This class is reserved as a template class. You 
  5. //Can also use it to thest the "sanity" of your package
  6. //before starting to work on the classes in this chapter
  7.  
  8.  
  9. class CH20_01LIST extends Commandlet;
  10. function int Main(string Args)
  11. {
  12.  
  13.  //local SomeClass firstClassObject;
  14.  // firstClassObject = new class'SomeClass';
  15.  
  16.   Log(Chr(10)$ " Testing the A ------ class");
  17.   Log("  A specific test: ");
  18.  
  19.   return 0;
  20. }
  21.