pokepurple/Library/Singletons/Globals.cs
Mario Steele c11a4ebbc2 Initial Commit
Initial commit of Code Base.
2025-06-12 14:31:14 -05:00

12 lines
208 B
C#

using Godot;
using System;
using Godot.Sharp.Extras;
public partial class Globals : Node
{
[NodePath] private Node _twitchService;
public override void _Ready()
{
this.OnReady();
}
}