PlugIn Development:GameEx PlugIn Type
Jump to navigation
Jump to search
This enumeration sets the type of plugin that you are developing for the PlugIn Info structure.
PLEASE NOTE: Only PlugIn_Type.Emulator is supported at this time.
Variables
Below is a reference of the variables set in this enumeration:
Variable | [Value] | Description |
---|---|---|
Emulator | [0] | Specifies an internal PlugIn type. |
Stand_Alone | [1] | Specifies an external PlugIn type. •NOTE• This type of plugin is not currently supported! |
Enumerations
VB.NET
Public Enum Plugin_Type Emulator = 0 Stand_Alone = 1 End Enum
C#
public enum Plugin_Type : int { Emulator = 0, Stand_Alone = 1, }