feat: add texture folder and remove old files

This commit is contained in:
2025-11-15 21:13:48 +01:00
parent cb103f4d90
commit a7583c37f4
8 changed files with 10 additions and 158 deletions

View File

@@ -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;
}