Degulleo3D/Assets/Scripts/Save/ISaveable.cs
2025-05-15 14:33:59 +09:00

9 lines
187 B
C#

/// <summary>
/// 세이브 데이터를 주고 받는 함수 인터페이스
/// </summary>
public interface ISaveable
{
void ApplySaveData(Save save);
Save ExtractSaveData();
}