initial commit

This commit is contained in:
Joshua Strobl 2024-09-29 17:29:10 +03:00
commit fae3d30dbd
26 changed files with 18409 additions and 0 deletions

View file

@ -0,0 +1,17 @@
#pragma once
#include "includes/toml.hpp"
#include <filesystem>
#include <string>
namespace fs = std::filesystem;
class KotoLibraryConfig {
public:
KotoLibraryConfig(const toml::value &v);
~KotoLibraryConfig();
std::string getName();
fs::path getPath();
private:
std::string i_name;
fs::path i_path;
};