diff options
| author | nathan <nathansmith@disroot.org> | 2025-12-18 10:23:19 +0000 |
|---|---|---|
| committer | nathan <nathansmith@disroot.org> | 2025-12-18 10:23:19 +0000 |
| commit | bcdd09d5075c9755538a93db8e3ca2690a803cc1 (patch) | |
| tree | 25a9e2e307bcc7d0908a81f7de6f365ab9230ff1 /src/ui.h | |
| parent | edaafadf2c5de7f23dfc20d420e973ed9dc92039 (diff) | |
| download | FindThings-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.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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); |
