Files
YachtDice/Assets/Scripts/UI/Presentation/IGameSaveService.cs
T
2026-03-04 06:48:21 +07:00

9 lines
132 B
C#

namespace YachtDice.UI.Presentation
{
public interface IGameSaveService
{
void Load();
void Save();
}
}