RustDedicated/Rust.Platform.Common/IAchievement.cs
2025-05-25 05:29:54 +09:30

8 lines
99 B
C#

public interface IAchievement
{
string Key { get; }
bool IsUnlocked { get; }
void Unlock();
}