2022-06-19 15:53:18 -04:00

29 lines
895 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using NewHorizons.AchievementsPlus;
using NewHorizons.External.Modules;
using NewHorizons.External.Modules.VariableSize;
using Newtonsoft.Json;
namespace NewHorizons.External.Configs
{
/// <summary>
/// Describes the New Horizons addon itself
/// </summary>
[JsonObject]
public class AddonConfig
{
/// <summary>
/// Achievements for this mod if the user is playing with Achievements+
/// Achievement icons must be put in a folder named "icons"
/// The icon for the mod must match the name of the mod (e.g., New Horizons.png)
/// The icons for achievements must match their unique IDs (e.g., NH_WARP_DRIVE.png)
/// </summary>
public AchievementInfo[] achievements;
}
}