summaryrefslogtreecommitdiff
path: root/Scripts
diff options
context:
space:
mode:
authorSophia Pearson <codergal89@gmail.com>2022-05-22 23:56:37 +0200
committerSophia Pearson <codergal89@gmail.com>2022-05-22 23:56:37 +0200
commitf3c50714834d2d5cb204625c63aaeffb50bef236 (patch)
tree61e6a12a7568129fe609ebb4633a59c781984a62 /Scripts
parent05d29ccce1898ed89c0b650c77242c2fa2805128 (diff)
downloadtexty-f3c50714834d2d5cb204625c63aaeffb50bef236.tar.xz
texty-f3c50714834d2d5cb204625c63aaeffb50bef236.zip
gui: set up a global theme
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()
+ {
+ }
+
+ }
+}
+