Files
LearnOpenGL/src/main.cpp

10 lines
163 B
C++

#include "game.hpp"
#define STB_IMAGE_IMPLEMENTATION
#include <stb_image.h>
int main()
{
Game game(800, 600, "game");
game.run();
return 0;
}