From 852f68409f5b6ac56a5f4b006002de755c5dd71c Mon Sep 17 00:00:00 2001 From: Sophia Pearson Date: Fri, 27 May 2022 23:55:07 +0200 Subject: texty: add basic script --- Scripts/Texty.cs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Scripts/Texty.cs (limited to 'Scripts') 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(nameof(Game)); + StartMenu = GetNode(nameof(StartMenu)); + } + + } +} + -- cgit v1.2.3