From 65f5143d3e01e111afb960451e0741ddb37be240 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Fri, 14 Nov 2025 23:30:05 -0500 Subject: graphics: add text message rendering (and sans ig) --- dungeon/src/player_input.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'dungeon/src/player_input.rs') diff --git a/dungeon/src/player_input.rs b/dungeon/src/player_input.rs index aa0ef14..ddaad9f 100644 --- a/dungeon/src/player_input.rs +++ b/dungeon/src/player_input.rs @@ -12,5 +12,8 @@ pub struct PlayerInput { /// (eg if the player is holding multiple keys at once, /// or a joystick) pub direction: Option, + /// If the player is currently attempting to interact + /// with some object, entity, etc. + pub interact: bool, // other player actions are to be added later } -- cgit v1.2.3-freya