From 08c502d813b11b1f9dd7b7143a0987454c76ea32 Mon Sep 17 00:00:00 2001 From: nathan Date: Mon, 22 Dec 2025 01:34:40 -0700 Subject: Menu item selection --- src/entities/ron.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/entities/ron.c') diff --git a/src/entities/ron.c b/src/entities/ron.c index 5c60b9f..d01f25a 100644 --- a/src/entities/ron.c +++ b/src/entities/ron.c @@ -41,6 +41,11 @@ InteractionCommand interactWithRon(Entity* entity, Game* game, case SELECTION_LEAVE: return INTERACTION_END; default: + if (selection >= SELECTION_MENU_ITEM && selection < SELECTION_LEAVE) + { + printf("%d\n", getInteractionMenuIndex(selection)); + } + return INTERACTION_DO_NOTHING; } } -- cgit v1.2.3