feat!: rework header files

This commit is contained in:
2026-01-06 20:07:44 +01:00
parent f4f9f4a7ac
commit 66761b8e5d
12 changed files with 122 additions and 78 deletions

26
inc/game.hpp Normal file
View File

@@ -0,0 +1,26 @@
#ifndef GAME_HPP
#define GAME_HPP
#include "GLFW/glfw3.h"
#include "core/time.hpp"
// class Game
// {
// private:
// Time time;
// GLFWwindow *window = nullptr;
// const char *WINDOW_NAME;
// int width;
// int height;
// int init();
// protected:
// public:
// Game(int width, int height, const char *window_name);
// void run();
// static void error(const char *type, int errortype, const char *desc);
// };
#endif