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 >
Wrap
C/C++ Source or Header
|
2009-01-28
|
484b
|
27 lines
/*
This file contains team related functions that
do not fit anywhere else.
*/
#ifndef TEAM_HEADER_FILE__
#define TEAM_HEADER_FILE__
#include "globaldata.h"
#define NO_WIN 0
#define JEDI_WIN 100
#define SITH_WIN 200
// This function checks to see if one
// team (Jedi or Sith) has won. Neutral
// is not considered a team.
// The function return the following:
// 0 - no team won
// JEDI_WON - Jedi team won
// SITH_WON - Sith team won
int Team_Won(GLOBALDATA *global);
#endif