home *** CD-ROM | disk | FTP | other *** search
/ UnrealScript Game Programming All in One / UnrealScriptGameProgrammingAllInOne.iso / UGPAIOListings / UGPAIOListingsCh19 / CH19LIST / Classes / CH19_01LIST.uc next >
Encoding:
Text File  |  2006-02-26  |  589 b   |  24 lines

  1. // %PARAMETERS = "CH19LIST C:\UT2004"
  2. //Identifies the package
  3. //CH29_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 CH19_01LIST extends Commandlet;
  10. function int Main(string Args)
  11. {
  12.  
  13.  //local Element firstClassObject;
  14.  // firstClassObject = new class'SomeClass';
  15.  
  16.   Log(Chr(10)$ " Testing the A ------ class");
  17.  
  18.   
  19.   //Log(Chr(10)$ " Testing the " $ firstClassObject .class $ "class");
  20.   Log("  A specific test: ");
  21.  
  22.   return 0;
  23. }
  24.