Add initial game systems and input handling for player interactions
This commit is contained in:
8
Assets/Scripts/Infrastructure/IPersistenceService.cs
Normal file
8
Assets/Scripts/Infrastructure/IPersistenceService.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace Infrastructure
|
||||
{
|
||||
public interface IPersistenceService
|
||||
{
|
||||
void SaveHighScore(string key, int score);
|
||||
int LoadHighScore(string key);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user