summaryrefslogtreecommitdiff
path: root/Scripts
diff options
context:
space:
mode:
Diffstat (limited to 'Scripts')
-rw-r--r--Scripts/Command.cs7
-rw-r--r--Scripts/CommandParser.cs14
2 files changed, 21 insertions, 0 deletions
diff --git a/Scripts/Command.cs b/Scripts/Command.cs
new file mode 100644
index 0000000..4a7ce58
--- /dev/null
+++ b/Scripts/Command.cs
@@ -0,0 +1,7 @@
+namespace Texty.Scripts
+{
+ public class Command
+ {
+
+ }
+} \ No newline at end of file
diff --git a/Scripts/CommandParser.cs b/Scripts/CommandParser.cs
new file mode 100644
index 0000000..1394a5e
--- /dev/null
+++ b/Scripts/CommandParser.cs
@@ -0,0 +1,14 @@
+using Godot;
+
+namespace Texty.Scripts
+{
+ public class CommandParser : Node
+ {
+
+ public override void _Ready()
+ {
+ }
+
+ }
+}
+