Interface IMyDLC
Contains information about a particular DLC package.
Namespace: VRage.Game.ModAPI
Assembly: VRage.Game.dll
Syntax
public interface IMyDLC
Properties
AppId
Gets the Steam AppID of the DLC.
Declaration
uint AppId { get; }
Property Value
Type | Description |
---|---|
System.UInt32 |
Badge
Gets badge of the DLC. Displayed in main menu.
Declaration
string Badge { get; }
Property Value
Type | Description |
---|---|
System.String |
Description
Gets localized description of the DLC.
Declaration
MyStringId Description { get; }
Property Value
Type | Description |
---|---|
MyStringId |
DisplayName
Gets localized name of the DLC.
Declaration
MyStringId DisplayName { get; }
Property Value
Type | Description |
---|---|
MyStringId |
Icon
Gets icon of the DLC. Displayed in G-screen, blueprints, etc ...
Declaration
string Icon { get; }
Property Value
Type | Description |
---|---|
System.String |
Name
Gets the internal name of the DLC. This is the name used in CubeBlocks.sbc, for example.
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
System.String |