SupaLidlGame/Utils/ISave.cs

13 lines
242 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; }
}