home *** CD-ROM | disk | FTP | other *** search
/ Game Level Design / GLDesign.bin / Software / UnrealEngine2Runtime / UE2Runtime-22262001_Demo.exe / UnrealEd / Classes / NotifyProperties.uc < prev    next >
Text File  |  2003-10-22  |  368b  |  22 lines

  1. class NotifyProperties extends Object
  2.     native
  3.     hidecategories(Object)
  4.     collapsecategories;
  5.  
  6. cpptext
  7. {
  8.     void PostEditChange();
  9. }
  10.  
  11. var int OldArrayCount;
  12. var const int WBrowserAnimationPtr;
  13.  
  14. struct native NotifyInfo
  15. {
  16.     var() FLOAT NotifyFrame;
  17.     var() editinlinenotify AnimNotify Notify;
  18.     var INT OldRevisionNum;
  19. };
  20.  
  21. var() Array<NotifyInfo> Notifys;
  22.