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

18
desktop/config/config.hpp Normal file
View file

@ -0,0 +1,18 @@
#pragma once
#include <vector>
#include "library.hpp"
#include "ui_prefs.hpp"
class KotoConfig {
public:
KotoConfig();
~KotoConfig();
std::vector<KotoLibraryConfig> getLibraries();
KotoUiPreferences * getUiPreferences();
private:
std::vector<KotoLibraryConfig> i_libraries;
KotoUiPreferences * i_uiPreferences;
};