summaryrefslogtreecommitdiff
path: root/Scripts/Game/Command.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Scripts/Game/Command.cs')
-rw-r--r--Scripts/Game/Command.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/Scripts/Game/Command.cs b/Scripts/Game/Command.cs
new file mode 100644
index 0000000..07d7c84
--- /dev/null
+++ b/Scripts/Game/Command.cs
@@ -0,0 +1,25 @@
+using Godot;
+
+namespace Texty.Scripts.Game
+{
+ public enum CommandType
+ {
+ Look
+ }
+
+ public class Command : Object
+ {
+ public Command()
+ {
+ }
+
+ public Command(CommandType type, string[] arguments)
+ {
+ RawArguments = arguments;
+ Type = type;
+ }
+
+ public string[] RawArguments { get; }
+ public CommandType Type { get; }
+ }
+} \ No newline at end of file