doom

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

wi_stuff.h (284B)


      1 
      2 
      3 
      4 
      5 
      6 
      7 
      8 
      9 
     10 
     11 
     12 
     13 
     14 
     15 
     16 
     17 
     18 
     19 
     20 
     21 
     22 #ifndef __WI_STUFF__
     23 #define __WI_STUFF__
     24 
     25 
     26 
     27 #include "doomdef.h"
     28 
     29 
     30 
     31 typedef enum
     32 {
     33     NoState = -1,
     34     StatCount,
     35     ShowNextLoc
     36 
     37 } stateenum_t;
     38 
     39 
     40 void WI_Ticker (void);
     41 
     42 
     43 
     44 void WI_Drawer (void);
     45 
     46 
     47 void WI_Start(wbstartstruct_t*	 wbstartstruct);
     48 
     49 #endif
     50 
     51 
     52 
     53 
     54