diff options
| author | Sophia Pearson <codergal89@gmail.com> | 2022-05-27 23:55:07 +0200 |
|---|---|---|
| committer | Sophia Pearson <codergal89@gmail.com> | 2022-05-27 23:55:07 +0200 |
| commit | 852f68409f5b6ac56a5f4b006002de755c5dd71c (patch) | |
| tree | 53072996340682652bce1804caf741cb9cfd7ed9 /Scripts/Texty.cs | |
| parent | 0477b9ab34817165ac7b11ad77a6740995f55892 (diff) | |
| download | texty-852f68409f5b6ac56a5f4b006002de755c5dd71c.tar.xz texty-852f68409f5b6ac56a5f4b006002de755c5dd71c.zip | |
texty: add basic script
Diffstat (limited to 'Scripts/Texty.cs')
| -rw-r--r-- | Scripts/Texty.cs | 19 |
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)); + } + + } +} + |
