Rename IPersistenceService files for improved structure

This commit is contained in:
2025-12-09 22:32:23 +01:00
parent c6cfbd2e39
commit 95cb0fbdae
2 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
namespace Infrastructure
{
public interface IPersistenceService
{
void SaveHighScore(string key, int score);
int LoadHighScore(string key);
}
}