aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui.h
diff options
context:
space:
mode:
authornathan <nathansmith@disroot.org>2025-12-18 10:23:19 +0000
committernathan <nathansmith@disroot.org>2025-12-18 10:23:19 +0000
commitbcdd09d5075c9755538a93db8e3ca2690a803cc1 (patch)
tree25a9e2e307bcc7d0908a81f7de6f365ab9230ff1 /src/ui.h
parentedaafadf2c5de7f23dfc20d420e973ed9dc92039 (diff)
downloadFindThings-bcdd09d5075c9755538a93db8e3ca2690a803cc1.tar.gz
FindThings-bcdd09d5075c9755538a93db8e3ca2690a803cc1.tar.bz2
FindThings-bcdd09d5075c9755538a93db8e3ca2690a803cc1.zip
Finally getting interaction stuff done
Diffstat (limited to 'src/ui.h')
-rw-r--r--src/ui.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ui.h b/src/ui.h
index 8de144f..3c3ab47 100644
--- a/src/ui.h
+++ b/src/ui.h
@@ -11,9 +11,10 @@ typedef struct {
char text[INTERACTION_CHAT_MAX];
Rectangle rect;
bool visible;
+ EntityId entityId;
} InteractionChat;
-void initInteractionChat(InteractionChat* chat);
+void initInteractionChat(InteractionChat* chat, const Settings* settings);
void showInteractionChat(InteractionChat* chat);
void hideInteractionChat(InteractionChat* chat);
void writeToInteractionChat(InteractionChat* chat, const char* text);