Initial Commit
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
namespace FlappyBird.Core
|
||||
{
|
||||
public interface IPlayerPrefsStorage
|
||||
{
|
||||
bool HasKey(string key);
|
||||
int GetInt(string key, int defaultValue = 0);
|
||||
void SetInt(string key, int value);
|
||||
void Save();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user