feat: Refactor agent chat widget handling and remove unused state variable

This commit is contained in:
scawful
2025-10-04 13:48:01 -04:00
parent 2ac363918e
commit 207b35df82
3 changed files with 10 additions and 9 deletions

View File

@@ -20,6 +20,7 @@ class AgentChatWidget {
void SetRomContext(Rom* rom);
bool* active() { return &active_; }
bool is_active() const { return active_; }
void set_active(bool active) { active_ = active; }
private: