| 1063 | #endif |
| 1064 | |
| 1065 | void DeleteMonster(int i) |
| 1066 | { |
| 1067 | int temp; |
| 1068 | |
| 1069 | nummonsters--; |
| 1070 | temp = monstactive[nummonsters]; |
| 1071 | monstactive[nummonsters] = monstactive[i]; |
| 1072 | monstactive[i] = temp; |
| 1073 | } |
| 1074 | |
| 1075 | int AddMonster(int x, int y, int dir, int mtype, BOOL InMap) |
| 1076 | { |