From f20bd89dc4a7bf14a88b1effcaa1887b29314525 Mon Sep 17 00:00:00 2001 From: Sophia Pearson Date: Mon, 5 Sep 2022 20:35:53 +0200 Subject: gui: split GUI into Terminal components --- Scripts/Game/Input.cs | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 Scripts/Game/Input.cs (limited to 'Scripts/Game/Input.cs') diff --git a/Scripts/Game/Input.cs b/Scripts/Game/Input.cs deleted file mode 100644 index 90a9962..0000000 --- a/Scripts/Game/Input.cs +++ /dev/null @@ -1,32 +0,0 @@ -using Godot; - -namespace Texty.Scripts.Game -{ - public class Input : PanelContainer - { - [Signal] public delegate void CommandSubmitted(Command command); - [Signal] public delegate void UnknownInputSubmitted(string text); - - private CommandParser CommandParser => GetNodeOrNull($"%{nameof(CommandParser)}"); - private Label PromptLabel => GetNodeOrNull