summaryrefslogtreecommitdiff
path: root/Scripts/Texty.cs
blob: 8497f299411ece482d3f5de752dc82f147b3580b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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));
		}

	}
}