Atomic Engine
Atomic Engine is a cross-platform vulkan based 3D Game Engine
Loading...
Searching...
No Matches
console_handler.h
1#ifndef CONSOLE_HANDLER_H
2#define CONSOLE_HANDLER_H
3
4#define DEBUGCONSOLE 1
5
6// Other necessary includes and declarations
7namespace atomic {
8 namespace console {
9 int launch_debug_console();
10 void close_debug_console();
11 }
12}
13
14#endif // CONSOLE_HANDLER_H