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/CommandParser.cs | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 Scripts/CommandParser.cs (limited to 'Scripts/CommandParser.cs') diff --git a/Scripts/CommandParser.cs b/Scripts/CommandParser.cs deleted file mode 100644 index 97d8025..0000000 --- a/Scripts/CommandParser.cs +++ /dev/null @@ -1,23 +0,0 @@ -using System.Linq; -using Godot; -using Texty.Scripts.Commands; - -namespace Texty.Scripts -{ - public class CommandParser : Node - { - public override void _Ready() - { - } - - public Command TryParse(string text) - { - var components = text.Split(' '); - return components[0].ToLower() switch - { - "look" => new LookCommand(components.Skip(1).ToArray()), - _ => null - }; - } - } -} \ No newline at end of file -- cgit v1.2.3