summaryrefslogtreecommitdiff
path: root/Scripts
diff options
context:
space:
mode:
Diffstat (limited to 'Scripts')
-rw-r--r--Scripts/Texty.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/Scripts/Texty.cs b/Scripts/Texty.cs
new file mode 100644
index 0000000..8497f29
--- /dev/null
+++ b/Scripts/Texty.cs
@@ -0,0 +1,19 @@
+using Godot;
+
+namespace Texty.Scripts
+{
+ public class Texty : Node
+ {
+
+ public Game Game;
+ public StartMenu StartMenu;
+
+ public override void _Ready()
+ {
+ Game = GetNode<Game>(nameof(Game));
+ StartMenu = GetNode<StartMenu>(nameof(StartMenu));
+ }
+
+ }
+}
+