player_type.hh 766 B

123456789101112131415161718192021
  1. /********************************************************************** <BR>
  2. This file is part of Crack dot Com's free source code release of
  3. Golgotha. <a href="http://www.crack.com/golgotha_release"> <BR> for
  4. information about compiling & licensing issues visit this URL</a>
  5. <PRE> If that doesn't help, contact Jonathan Clark at
  6. golgotha_source@usa.net (Subject should have "GOLG" in it)
  7. ***********************************************************************/
  8. #ifndef G1_PLAYER_TYPE_HH
  9. #define G1_PLAYER_TYPE_HH
  10. // Currently the limit for # players in golgotha is 255.
  11. // If this is changed g1_object load and save need reflect the new type
  12. #include "arch.hh"
  13. typedef w8 g1_player_type;
  14. enum { g1_default_player = 0 };
  15. #endif