catch_const.inc
Original include source with line numbers.
| 1 | #if defined _catch_const_included |
| 2 | #endinput |
| 3 | #endif |
| 4 | #define _catch_const_included |
| 5 | |
| 6 | #define CATCHMOD_VER "1.0.1-ReAPI" |
| 7 | #define MAXPLAYERSVAR MAX_PLAYERS + 1 |
| 8 | |
| 9 | enum Teams |
| 10 | { |
| 11 | FLEER, |
| 12 | CATCHER, |
| 13 | TRAINING, |
| 14 | NONE |
| 15 | } |
| 16 | |
| 17 | stock g_szTeamsNames[Teams][MAXPLAYERSVAR] = |
| 18 | { |
| 19 | "Fleer", |
| 20 | "Catcher", |
| 21 | "Training", |
| 22 | "None" |
| 23 | } |
| 24 | |