mirror of
https://github.com/guezoloic/LearnOpenGL.git
synced 2026-01-25 07:34:16 +00:00
23 lines
226 B
C++
23 lines
226 B
C++
#ifndef GAME_HPP
|
|
#define GAME_HPP
|
|
|
|
#include "visual.hpp"
|
|
|
|
#include <GL/glew.h>
|
|
#include <GLFW/glfw3.h>
|
|
|
|
class Game
|
|
{
|
|
private:
|
|
bool finished = false;
|
|
int frame = 60;
|
|
|
|
Visual v;
|
|
public:
|
|
Game();
|
|
|
|
void run();
|
|
};
|
|
|
|
#endif
|