12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- #ifndef __STSTUFF_H__
- #define __STSTUFF_H__
- #include "doomtype.h"
- #include "d_event.h"
- #define ST_HEIGHT 32*SCREEN_MUL
- #define ST_WIDTH ORIGINAL_WIDTH
- #define ST_Y (ORIGINAL_HEIGHT - ST_HEIGHT)
- qboolean ST_Responder (event_t* ev);
- void ST_Ticker (void);
- void ST_Drawer (qboolean fullscreen, qboolean refresh);
- void ST_Start (void);
- void ST_Init (void);
- typedef enum
- {
- AutomapState,
- FirstPersonState
-
- } st_stateenum_t;
- typedef enum
- {
- StartChatState,
- WaitDestState,
- GetChatState
-
- } st_chatstateenum_t;
- qboolean ST_Responder(event_t* ev);
- #endif
|