feat: engine class impl + IApplication interface

This commit is contained in:
2025-10-05 16:27:58 +02:00
parent 9d56515fe5
commit 431d723afc
10 changed files with 318 additions and 263 deletions

View File

@ -32,7 +32,9 @@ private:
private:
Object();
public:
static Object LoadFile(const std::string& filename);
~Object() = default;
public:
static Object* LoadFile(const std::string& filename);
private:
void LoadMaterials(const std::filesystem::path& filename);