yaze 0.3.2
Link to the Past ROM Editor
 
Loading...
Searching...
No Matches
agent_editor_panels.cc
Go to the documentation of this file.
2
4#include "imgui/imgui.h"
5
6namespace yaze {
7namespace editor {
8
9void AgentChatPanel::Draw(bool* p_open) {
10 if (chat_) {
11 chat_->set_active(true);
12 chat_->Draw();
13 } else {
14 ImGui::TextDisabled("Chat not available");
15 }
16}
17
18} // namespace editor
19} // namespace yaze
void Draw(bool *p_open) override
Draw the panel content.
void Draw(float available_height=0.0f)
Definition agent_chat.cc:81
void set_active(bool active)
Definition agent_chat.h:67