feat(Game): re init Game class

This commit is contained in:
2025-11-19 10:10:53 +01:00
parent a7583c37f4
commit 3892d29f4e
3 changed files with 75 additions and 2 deletions

23
inc/game.hpp Normal file
View File

@@ -0,0 +1,23 @@
#ifndef GAME_HPP
#define GAME_HPP
#include "GLFW/glfw3.h"
#include <string>
using namespace std;
class Game
{
private:
int width;
int height;
const char *name;
GLFWwindow *window;
public:
Game(int width, int height, string name);
~Game();
void run();
};
#endif