refactor: enhance GameStateStore integration and improve skill management

This commit is contained in:
2026-03-19 02:33:07 +01:00
parent 3e36e48e97
commit eeefca4d4e
31 changed files with 260 additions and 419 deletions

View File

@@ -0,0 +1,16 @@
using System.Collections.Generic;
namespace Mr.BrickAdventures.scripts.State;
public class GhostSaveData
{
public double BestTime { get; set; }
public List<GhostFrameDto> Frames { get; set; } = new();
}
public class GhostFrameDto
{
public double Timestamp { get; set; }
public float X { get; set; }
public float Y { get; set; }
}