Table of Contents

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

string

Current

Information about the currently loaded mod.

public static ModInfo? Current { get; set; }

Property Value

ModInfo

CurrentLocation

The path to the file containing the mod information.

public static string? CurrentLocation { get; set; }

Property Value

string

Description

A short description of the mod.

public string? Description { get; set; }

Property Value

string

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

string

MainGame

Shall the application be used to edit the main game instead of a mod?

public static bool MainGame { get; set; }

Property Value

bool

Name

The name of the mod.

public string? Name { get; set; }

Property Value

string

Version

The version of the mod.

public string? Version { get; set; }

Property Value

string

Website

The website of the author.

public string? Website { get; set; }

Property Value

string