Just so I don't lose current progress on 2.0...
Some checks failed
Build / Build Game (push) Has been cancelled

This commit is contained in:
2026-01-10 03:07:06 -05:00
parent 1f1ac0db4d
commit 8b2edd1359
31 changed files with 4 additions and 0 deletions

21
src/loader.hpp Normal file
View File

@@ -0,0 +1,21 @@
#pragma once
#include "glm/ext/vector_float2.hpp"
#include <SDL3/SDL.h>
namespace game
{
class Loader
{
public:
static constexpr glm::vec2 SIZE = {1080, 720};
SDL_Window* window{};
SDL_GLContext context{};
bool isError{};
Loader();
~Loader();
};
};