d_console.h
上传用户:xuyinpeng
上传日期:2021-05-12
资源大小:455k
文件大小:1k
源码类别:

射击游戏

开发平台:

Visual C++

  1. // d_console.h
  2. // This is the header file for the Doom98 console
  3. #include <windows.h>
  4. #include "d_event.h"
  5. #ifndef __DOOMCON__
  6. #define __DOOMCON__
  7. #define CONSOLE_NAME "M_DOOM"
  8. #define CONSOLE_FLAT "CEIL5_1"
  9. #define CONSOLE_BORD "FLAT18"
  10. #define CONSBORD     2
  11. #define CONSVERS     95
  12. #define CONSMSGS     64
  13. extern BOOL bConsoleActive;
  14. void CO_Ticker(void);
  15. BOOL CO_Responder(event_t* ev);
  16. void CO_Drawer(void);
  17. void CO_Init(void);
  18. void CO_AddConsoleMessage(char *s);
  19. int  CO_StringWidth(char *s);
  20. int  CO_StringPrintable(char *s);
  21. void CO_WriteConsoleLine(int i, char *s, BOOL wrap);
  22. #endif