Defcon/hook_lib/console.h
MatrixMMOfficial 9631e4ca40 Initial commit
2023-11-26 08:54:06 -05:00

14 lines
228 B
C

#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;