doom

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

am_map.h (284B)


      1 #ifndef __AMMAP_H__
      2 #define __AMMAP_H__
      3 
      4 #define AM_MSGHEADER (('a'<<24)+('m'<<16))
      5 #define AM_MSGENTERED (AM_MSGHEADER | ('e'<<8))
      6 #define AM_MSGEXITED (AM_MSGHEADER | ('x'<<8))
      7 
      8 boolean AM_Responder(event_t* ev);
      9 void    AM_Ticker();
     10 void    AM_Drawer();
     11 void    AM_Stop();
     12 
     13 #endif