using Godot; namespace Babushka.scripts.CSharp.Common.Savegame; /// /// This class manages the loading of the savegame throughout the gameplay flow. /// public partial class SaveGameManager : Node { public static SaveGameManager? Instance { get; private set; } = null!; public override void _EnterTree() { Instance = this; SavegameService.Load(); } }