๐Common Features of NML
For BasicMod
Log
Mod Instance
Mod Info
// Some fields are not shown here, see 'Basic Concept/Mod Declaration' for details
public class ModDeclare
{
// Mod's name
public string Name { get; private set; }
// Mod's ID(It should be unique)
public string UID { get; private set; }
// Mod's author
public string Author { get; private set; }
// Mod's version
public string Version { get; private set; }
// Mod's simple description
public string Description { get; private set; }
// URL to repository of the mod
public string RepoUrl { get; private set; }
// Necessary(hard) dependencies
public string[] Dependencies { get; private set; }
// Optional(soft) dependencies
public string[] OptionalDependencies { get; private set; }
// Path to the folder of mod.json
public string FolderPath { get; private set; };
// Path to mod's icon file(Related to the folder of mod.json)
public string IconPath { get; private set; }
}Mod Configuration Window
Multiligual
Others Common Features
Log
Sprite
Last updated