|
|
@ -1,4 +1,4 @@
|
|
|
|
/* $Id: bomberclone.h,v 1.40 2003/06/22 02:03:09 stpohle Exp $ */
|
|
|
|
/* $Id: bomberclone.h,v 1.41 2003/07/12 23:55:08 stpohle Exp $ */
|
|
|
|
/* bomberclone.h */
|
|
|
|
/* bomberclone.h */
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _BOMBERCLONE_H_
|
|
|
|
#ifndef _BOMBERCLONE_H_
|
|
|
@ -71,6 +71,8 @@ struct __special {
|
|
|
|
int type; // type of the special
|
|
|
|
int type; // type of the special
|
|
|
|
int to; // timeout
|
|
|
|
int to; // timeout
|
|
|
|
int numuse; // num of uses left
|
|
|
|
int numuse; // num of uses left
|
|
|
|
|
|
|
|
int use; /* currently used set by special_use
|
|
|
|
|
|
|
|
and deleted in special_loop */
|
|
|
|
} typedef _special;
|
|
|
|
} typedef _special;
|
|
|
|
|
|
|
|
|
|
|
|
struct __player {
|
|
|
|
struct __player {
|
|
|
@ -97,7 +99,7 @@ struct __player {
|
|
|
|
int speed; // how fast we can go (0 = slow, 1 = normal... 3 = fastest)
|
|
|
|
int speed; // how fast we can go (0 = slow, 1 = normal... 3 = fastest)
|
|
|
|
int speeddat; // some data i need to do the speed thing
|
|
|
|
int speeddat; // some data i need to do the speed thing
|
|
|
|
_playerilness ill[PI_max]; // all possible types
|
|
|
|
_playerilness ill[PI_max]; // all possible types
|
|
|
|
_special special; // special the player has
|
|
|
|
_special special; // special the player has
|
|
|
|
|
|
|
|
|
|
|
|
char name[LEN_PLAYERNAME]; // name oder name[0] == 0
|
|
|
|
char name[LEN_PLAYERNAME]; // name oder name[0] == 0
|
|
|
|
unsigned char state; // status of the player
|
|
|
|
unsigned char state; // status of the player
|
|
|
|