From c6bbb834f7758027c0df338f1520f34fad3befea Mon Sep 17 00:00:00 2001 From: Matheus Date: Tue, 9 Sep 2025 19:09:34 -0300 Subject: Organização MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/InputHandling/GameOverInputHandler.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 scripts/InputHandling/GameOverInputHandler.cs (limited to 'scripts/InputHandling/GameOverInputHandler.cs') diff --git a/scripts/InputHandling/GameOverInputHandler.cs b/scripts/InputHandling/GameOverInputHandler.cs new file mode 100644 index 0000000..e11e98a --- /dev/null +++ b/scripts/InputHandling/GameOverInputHandler.cs @@ -0,0 +1,16 @@ +using TheLegendOfGustav.Entities.Actions; +using TheLegendOfGustav.Entities.Actors; + +namespace TheLegendOfGustav.InputHandling; + +/// +/// Esquema de controles para quando o jogador está morto. +/// +public partial class GameOverInputHandler : BaseInputHandler +{ + // Por enquanto não tem nada. + public override Action GetAction(Player player) + { + return null; + } +} \ No newline at end of file -- cgit v1.2.3