refactoring, new game(s) in progress

This commit is contained in:
2026-04-09 12:47:09 -04:00
parent f7b00847ee
commit a529d5cdce
57 changed files with 2743 additions and 759 deletions
+14
View File
@@ -0,0 +1,14 @@
#pragma once
#include "../text.hpp"
#include <imgui.h>
namespace game::state::play::menu
{
class Interact
{
public:
void update(Resources&, Text&, entity::Character&);
};
}