added the readme

This commit is contained in:
2026-06-08 17:07:34 -04:00
commit 6655fd2886
1001 changed files with 253651 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#ifndef COMMON_H
#define COMMON_H
#include<glad/glad.h>
#include<GLFW/glfw3.h>
class Engine;
class Window;
class Mouse;
class Keyboard;
class SoundSystem;
class ResourceManager;
inline Window* window;
inline Engine* engine;
inline Keyboard* keyboard;
inline Mouse* mouse;
inline SoundSystem* soundsystem;
inline ResourceManager* resourcemanager;
#endif // ! COMMON_H