doom

a minimalistic implementation of doom
git clone git://ssnf.xyz/doom
Log | Files | Refs

d_ticcmd.h (303B)


      1 
      2 
      3 
      4 
      5 
      6 
      7 
      8 
      9 
     10 
     11 
     12 
     13 
     14 
     15 
     16 
     17 
     18 
     19 
     20 
     21 
     22 
     23 #ifndef __D_TICCMD__
     24 #define __D_TICCMD__
     25 
     26 #include "doomdef.h"
     27 
     28 #ifdef __GNUG__
     29 #pragma interface
     30 #endif
     31 
     32 
     33 
     34 
     35 
     36 typedef struct
     37 {
     38     char	forwardmove;	
     39     char	sidemove;	
     40     short	angleturn;	
     41     short	consistancy;	
     42     byte	chatchar;
     43     byte	buttons;
     44 } ticcmd_t;
     45 
     46 
     47 
     48 #endif
     49 
     50 
     51 
     52 
     53