Files
shweets-sim/src/loader.hpp
shweet 17f3348e94
Some checks failed
Build / Build Game (push) Has been cancelled
The Mega Snivy Update
2026-02-28 21:48:00 -05:00

24 lines
388 B
C++

#pragma once
#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 = {1280, 720};
SDL_Window* window{};
SDL_GLContext context{};
bool isError{};
resource::xml::Settings settings;
Loader(int argc, const char** argv);
~Loader();
};
};