The Mega Snivy Update
Some checks failed
Build / Build Game (push) Has been cancelled

This commit is contained in:
2026-02-28 21:48:00 -05:00
parent 8b2edd1359
commit 17f3348e94
163 changed files with 8725 additions and 13281 deletions

View File

@@ -1,20 +1,22 @@
#pragma once
#include "glm/ext/vector_float2.hpp"
#include "resource/xml/settings.hpp"
#include <SDL3/SDL.h>
#include <glm/ext/vector_float2.hpp>
namespace game
{
class Loader
{
public:
static constexpr glm::vec2 SIZE = {1080, 720};
static constexpr glm::vec2 SIZE = {1280, 720};
SDL_Window* window{};
SDL_GLContext context{};
bool isError{};
resource::xml::Settings settings;
Loader();
Loader(int argc, const char** argv);
~Loader();
};