summaryrefslogtreecommitdiff
path: root/scripts/input/GameOverInputHandler.cs
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/input/GameOverInputHandler.cs')
-rw-r--r--scripts/input/GameOverInputHandler.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/input/GameOverInputHandler.cs b/scripts/input/GameOverInputHandler.cs
new file mode 100644
index 0000000..5e41daf
--- /dev/null
+++ b/scripts/input/GameOverInputHandler.cs
@@ -0,0 +1,13 @@
+using Godot;
+
+/// <summary>
+/// Esquema de controles para quando o jogador está morto.
+/// </summary>
+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