Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. void Init( int MaxInstances )
  2. {
  3. if( Entries )
  4. delete[] Entries;
  5.  
  6. Size = MaxInstances;
  7. Entries = new CTransform2D[ Size ]; // Warning, conversion from int to unsigned int
  8. Generations = new int[ Size ];
  9. RosterBackRefs = new int[ Size ];
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement