- [NEW] Consola in-game

This commit is contained in:
2024-07-03 11:38:39 +02:00
parent 06d58b090d
commit c7186119c2
7 changed files with 371 additions and 99 deletions

10
source/console.h Normal file
View File

@@ -0,0 +1,10 @@
#pragma once
namespace console
{
void init();
void toggle();
const bool isEnabled();
const bool update();
void draw();
}