15 lines
182 B
C++
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
|