p_pspr.h (400B)
1 #ifndef __P_PSPR__ 2 #define __P_PSPR__ 3 4 #include "m_fixed.h" 5 #include "tables.h" 6 7 8 #include "info.h" 9 10 #ifdef __GNUG__ 11 #pragma interface 12 #endif 13 14 15 16 17 18 19 #define FF_FULLBRIGHT 0x8000 20 #define FF_FRAMEMASK 0x7fff 21 22 23 24 25 26 27 28 29 typedef enum 30 { 31 ps_weapon, 32 ps_flash, 33 NUMPSPRITES 34 35 } psprnum_t; 36 37 typedef struct 38 { 39 state_t* state; 40 int tics; 41 fixed_t sx; 42 fixed_t sy; 43 44 } pspdef_t; 45 46 #endif 47 48 49 50 51