SupaLidlGame/Utils/ISave.cs

15 lines
281 B
C#
Raw Normal View History

2024-10-17 13:29:47 -07:00
using Godot;
namespace SupaLidlGame.Utils;
public interface ISave
{
public State.Global.Progression Progression { get; set; }
public State.Global.MapState MapState { get; set; }
public State.Global.Stats Stats { get; set; }
2024-10-18 11:10:34 -07:00
public ulong TimeElapsed { get; }
2024-10-17 13:29:47 -07:00
}