14 lines
343 B
C#
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;
|
|
}
|
|
} |