mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
13 lines
442 B
C#
13 lines
442 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);
|
|
}
|
|
}
|