Files
App/src/app/app_state.hpp
2026-06-13 10:49:41 +07:00

15 lines
182 B
C++

#pragma once
#include <filesystem>
#include <nlohmann/json.hpp>
namespace lm {
struct AppState
{
std::filesystem::path data_path;
nlohmann::json state;
};
} // namespace lm