- added the ZDoom console and made all needed changes to get it compiled.

This commit is contained in:
Christoph Oelckers 2019-11-05 19:57:48 +01:00
parent ffa16b2a53
commit d943fe036d
17 changed files with 59482 additions and 150 deletions

View file

@ -35,20 +35,10 @@
#define __C_CONSOLE__
#include <stdarg.h>
//#include "basictypes.h"
// Dummies for missing features to make the code compile.
inline void C_AddTabCommand (const char *name) {}
inline void C_RemoveTabCommand (const char *name) {}
#if 0
#include "basics.h"
struct event_t;
#define C_BLINKRATE (TICRATE/2)
typedef enum cstate_t
{
c_up=0, c_down=1, c_falling=2, c_rising=3
@ -97,5 +87,3 @@ void C_ClearTabCommands(); // Removes all tab commands
extern const char *console_bar;
#endif
#endif