Defcon/hook_lib/console.h

14 lines
228 B
C
Raw Normal View History

2023-11-26 08:54:06 -05:00
#pragma once
#include "Main.hpp"
struct game_console {
bool bopen;
int start;
char szBuffer[4096];
int edit_tick;
void Render();
void KeyboardHandle(WPARAM wParam, int key, char chKey);
};
extern game_console g_console;