Refactor...

This commit is contained in:
2025-10-21 20:23:27 -04:00
parent 7f07eaa128
commit 5b0f9a39c4
104 changed files with 17010 additions and 13171 deletions

24
src/loader.h Normal file
View File

@@ -0,0 +1,24 @@
#pragma once
#include <string>
#include <vector>
#include <SDL3/SDL.h>
#include "settings.h"
namespace anm2ed::loader
{
class Loader
{
public:
SDL_Window* window{};
SDL_GLContext glContext{};
settings::Settings settings;
std::vector<std::string> arguments;
bool isError{};
Loader(int argc, const char** argv);
~Loader();
};
}