From 2f3abbb6f1141f15ef77ac27e431bc66bb0c7899 Mon Sep 17 00:00:00 2001 From: Sophia Pearson Date: Sun, 4 Sep 2022 15:43:12 +0200 Subject: game: adapt scripts to new design --- Scripts/Command.cs | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 Scripts/Command.cs (limited to 'Scripts/Command.cs') diff --git a/Scripts/Command.cs b/Scripts/Command.cs deleted file mode 100644 index e784576..0000000 --- a/Scripts/Command.cs +++ /dev/null @@ -1,25 +0,0 @@ -using Godot; - -namespace Texty.Scripts -{ - 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 -- cgit v1.2.3