This commit is contained in:
2026-01-29 15:51:29 +01:00
parent 208f849b47
commit bce9a12bcb
4 changed files with 94 additions and 31 deletions

10
testing/inc/App.hpp Normal file
View File

@@ -0,0 +1,10 @@
class App
{
public:
void init();
void update();
void draw();
void deinit();
};