9 lines
132 B
C#
9 lines
132 B
C#
namespace YachtDice.UI.Presentation
|
|
{
|
|
public interface IGameSaveService
|
|
{
|
|
void Load();
|
|
void Save();
|
|
}
|
|
}
|