fix app.* functions & update 'world' test

This commit is contained in:
MihailRis
2025-01-01 18:25:30 +03:00
parent 4a6689104a
commit 30a8ddf2d3
5 changed files with 81 additions and 41 deletions
+4
View File
@@ -2,13 +2,17 @@
#include <string>
#include <vector>
#include <memory>
class Engine;
class World;
class ContentReport;
class LevelController;
class EngineController {
Engine& engine;
void onMissingContent(const std::shared_ptr<ContentReport>& report);
public:
EngineController(Engine& engine);