mirror of
https://github.com/guezoloic/LearnOpenGL.git
synced 2026-03-31 19:11:43 +00:00
feat: add texture folder and remove old files
This commit is contained in:
16
src/main.cpp
16
src/main.cpp
@@ -1,8 +1,10 @@
|
||||
#include "visual.hpp"
|
||||
|
||||
int main()
|
||||
{
|
||||
Visual v("game", 800, 600);
|
||||
v.run();
|
||||
return 0;
|
||||
#include "game.hpp"
|
||||
#define STB_IMAGE_IMPLEMENTATION
|
||||
#include <stb_image.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
Game game(800, 600, "game");
|
||||
game.run();
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user