8 lines
171 B
C#
8 lines
171 B
C#
namespace Infrastructure
|
|
{
|
|
public interface IPersistenceService
|
|
{
|
|
void SaveHighScore(string key, int score);
|
|
int LoadHighScore(string key);
|
|
}
|
|
} |