mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
14 lines
488 B
C#
14 lines
488 B
C#
using OWML.ModHelper;
|
|
|
|
namespace NewHorizons.AchievementsPlus
|
|
{
|
|
public interface IAchievements
|
|
{
|
|
void RegisterAchievement(string uniqueID, bool secret, ModBehaviour mod);
|
|
void RegisterTranslation(string uniqueID, TextTranslation.Language language, string name, string description);
|
|
void RegisterTranslationsFromFiles(ModBehaviour mod, string folderPath);
|
|
void EarnAchievement(string uniqueID);
|
|
bool HasAchievement(string uniqueID);
|
|
}
|
|
}
|