2026-06-26 11:18:49 +01:00

14 lines
343 B
C#

using System;
using Intrepid.SaveSystem;
using Sirenix.OdinInspector;
using UnityEngine;
namespace Intrepid.Integration.Persistence.DTOs
{
[Serializable]
public class GameSlotSaveFileDTO : SaveFileDTO
{
[SerializeField, InlineProperty, Title("Game Slot"), HideLabel, PropertySpace]
public GameSlotDTO slot;
}
}