Property: PluginID
Version 2.0+

Public Property Let PluginID(NewVal As Integer)

When the Saved Game Manager initialises your plug-in it will set PluginID to an internal ID number if ExpectedVersion is 2.0 or higher. This number is required when, for example, adding custom menus, if such a feature is introduced in a future version.

Example

Dim PID As Integer

Public Property Let PluginID(NewVal As Integer)
    PID = NewVal
End Property

Public Property Get PluginID() As Integer
    PluginID = PID
End Property