timeline refactor, bit broken rn

This commit is contained in:
2025-11-09 10:35:21 -05:00
parent 1e35910b0a
commit e2799b1e58
41 changed files with 2034 additions and 1374 deletions

View File

@@ -1,11 +1,14 @@
#pragma once
#include <atomic>
#include <string>
#include <thread>
#include <vector>
#include <SDL3/SDL.h>
#include "settings.h"
#include "socket.h"
namespace anm2ed
{
@@ -14,11 +17,15 @@ namespace anm2ed
std::string settings_path();
public:
Socket socket{};
std::thread socketThread{};
std::atomic_bool isSocketRunning{};
SDL_Window* window{};
SDL_GLContext glContext{};
Settings settings;
std::vector<std::string> arguments;
bool isError{};
bool isSocketThread{};
Loader(int, const char**);
~Loader();