Files
elf-game/Assets/Scripts/Infrastructure/IPersistenceService.cs

8 lines
171 B
C#

namespace Infrastructure
{
public interface IPersistenceService
{
void SaveHighScore(string key, int score);
int LoadHighScore(string key);
}
}