8 lines
99 B
C#
8 lines
99 B
C#
public interface IAchievement
|
|
{
|
|
string Key { get; }
|
|
|
|
bool IsUnlocked { get; }
|
|
|
|
void Unlock();
|
|
}
|