add core/testable for gui test engine

This commit is contained in:
scawful
2024-07-28 12:10:04 -04:00
parent 12be781205
commit 2cb942a712
2 changed files with 20 additions and 10 deletions

View File

@@ -14,6 +14,7 @@
#include "app/core/common.h"
#include "app/core/constants.h"
#include "app/core/project.h"
#include "app/core/testable.h"
#include "app/editor/code/assembly_editor.h"
#include "app/editor/code/memory_editor.h"
#include "app/editor/dungeon/dungeon_editor.h"
@@ -36,16 +37,6 @@
namespace yaze {
namespace app {
namespace core {
class GuiTestable {
public:
virtual void RegisterTests(ImGuiTestEngine* e) = 0;
ImGuiTestEngine* test_engine;
};
} // namespace core
namespace editor {
/**