mirror of
https://github.com/guezoloic/LearnOpenGL.git
synced 2026-03-28 18:03:44 +00:00
10 lines
163 B
C++
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;
|
|
} |