home *** CD-ROM | disk | FTP | other *** search
/ C++ Games Programming / CPPGAMES.ISO / thx / source / theatrix / folder.cpp < prev    next >
C/C++ Source or Header  |  1995-02-17  |  435b  |  15 lines

  1. //-------------------------------------------------------------------------
  2. //---------------------------------------------- Al Stevens    ------------
  3. //---------------------------------------------- folder.cpp    ------------
  4. //-------------------------------------------------------------------------
  5.  
  6. #include "folder.h"
  7.  
  8. void Folder::delHand(Hand* h)
  9. {
  10.     for (int i = 0; i < eventct; i++)
  11.         events[i].delHand(h);
  12. }
  13.  
  14.  
  15.