Files
Flappy-Bird-AI-Driven-Result/Assets/Scripts/Core/IPlayerPrefsStorage.cs
T
2026-03-16 14:38:46 +02:00

11 lines
235 B
C#

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();
}
}