diff options
| author | nathan <nathansmith@disroot.org> | 2025-12-22 08:34:40 +0000 |
|---|---|---|
| committer | nathan <nathansmith@disroot.org> | 2025-12-22 08:34:40 +0000 |
| commit | 08c502d813b11b1f9dd7b7143a0987454c76ea32 (patch) | |
| tree | 8caa319d59ab991a270495f5b9f9c263eb2de74f /src/entity.c | |
| parent | db04bfb989a5ebbd1f57e9983a2bb819c3ce4d67 (diff) | |
| download | FindThings-08c502d813b11b1f9dd7b7143a0987454c76ea32.tar.gz FindThings-08c502d813b11b1f9dd7b7143a0987454c76ea32.tar.bz2 FindThings-08c502d813b11b1f9dd7b7143a0987454c76ea32.zip | |
Menu item selection
Diffstat (limited to 'src/entity.c')
| -rw-r--r-- | src/entity.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/entity.c b/src/entity.c index ea9c66c..bcb7735 100644 --- a/src/entity.c +++ b/src/entity.c @@ -152,6 +152,16 @@ InteractionCommand interactWithEntity(Entity* entity, Game* game, return INTERACTION_END; } +int getInteractionMenuIndex(Selection selection) +{ + if (selection < SELECTION_MENU_ITEM || selection >= SELECTION_LEAVE) + { + return SELECTION_NONE; + } + + return selection - SELECTION_MENU_ITEM; +} + BoundingBox entityBoxFromScale(float scale, float width, float height) { Vector2 size = (Vector2){width / height * scale, scale}; |
