Class ModInfo
- Namespace
- AlphaFramework.Editor
- Assembly
- AlphaFramework.Editor.dll
Contains basic information about a mod.
public sealed class ModInfo
- Inheritance
-
ModInfo
- Inherited Members
- Extension Methods
Properties
Author
The author of the mod.
public string? Author { get; set; }
Property Value
Current
Information about the currently loaded mod.
public static ModInfo? Current { get; set; }
Property Value
CurrentLocation
The path to the file containing the mod information.
public static string? CurrentLocation { get; set; }
Property Value
Description
A short description of the mod.
public string? Description { get; set; }
Property Value
FileExt
The file extensions used when this class is stored as a file including the leading dot.
public static string FileExt { get; set; }
Property Value
MainGame
Shall the application be used to edit the main game instead of a mod?
public static bool MainGame { get; set; }
Property Value
Name
The name of the mod.
public string? Name { get; set; }
Property Value
Version
The version of the mod.
public string? Version { get; set; }
Property Value
Website
The website of the author.
public string? Website { get; set; }