home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Inne / Gry / Atomic_Tanks / Atomic-Tanks-5.1.exe / src / team.h < prev    next >
C/C++ Source or Header  |  2009-01-28  |  484b  |  27 lines

  1. /*
  2. This file contains team related functions that
  3. do not fit anywhere else.
  4. */
  5.  
  6. #ifndef TEAM_HEADER_FILE__
  7. #define TEAM_HEADER_FILE__
  8.  
  9. #include "globaldata.h"
  10.  
  11. #define NO_WIN 0
  12. #define JEDI_WIN 100
  13. #define SITH_WIN 200
  14.  
  15. // This function checks to see if one
  16. // team (Jedi or Sith) has won. Neutral
  17. // is not considered a team.
  18. // The function return the following:
  19. // 0 - no team won
  20. // JEDI_WON - Jedi team won
  21. // SITH_WON - Sith team won
  22.  
  23. int Team_Won(GLOBALDATA *global);
  24.  
  25. #endif
  26.  
  27.