SupaLidlGame/Utils/Save.cs

23 lines
411 B
C#
Raw Normal View History

2023-08-12 15:01:22 -07:00
using Godot;
namespace SupaLidlGame.Utils;
2024-10-17 13:29:47 -07:00
public partial class Save : Resource, ISave
2023-08-12 15:01:22 -07:00
{
[Export]
public State.Global.Progression Progression { get; set; }
[Export]
public State.Global.MapState MapState { get; set; }
[Export]
public State.Global.Stats Stats { get; set; }
public Save()
{
Progression = new();
MapState = new();
Stats = new();
}
}