From bcdd09d5075c9755538a93db8e3ca2690a803cc1 Mon Sep 17 00:00:00 2001 From: nathan Date: Thu, 18 Dec 2025 03:23:19 -0700 Subject: Finally getting interaction stuff done --- src/ui.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/ui.h') 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); -- cgit v1.2.3