2023-08-07 02:38:51 -07:00
|
|
|
using Godot;
|
|
|
|
|
|
|
|
namespace SupaLidlGame.State.Global;
|
|
|
|
|
2023-12-13 18:25:32 -08:00
|
|
|
[GlobalClass]
|
2023-08-07 02:38:51 -07:00
|
|
|
public partial class Stats : Resource
|
|
|
|
{
|
|
|
|
[Export]
|
|
|
|
public Vector2 SaveLocation { get; set; }
|
|
|
|
|
|
|
|
[Export]
|
|
|
|
public string SaveMapKey { get; set; }
|
|
|
|
|
|
|
|
[Export]
|
|
|
|
public int DeathCount { get; set; } = 0;
|
|
|
|
}
|