Add initial project files and configurations for Unity setup
This commit is contained in:
8
Assets/Scripts/Core/Ports/IPersistenceService.cs
Normal file
8
Assets/Scripts/Core/Ports/IPersistenceService.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace Core.Ports
|
||||
{
|
||||
public interface IPersistenceService
|
||||
{
|
||||
void Save(string key, int value);
|
||||
int Load(string key, int defaultValue = 0);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user