Method | Description | |
---|---|---|
CanLoadObject ( string path ) : bool |
Checks whether the plugin can load the specified object.
|
|
Load ( Hosts host ) : void |
Called when the plugin is loaded.
|
|
LoadObject ( string path, Object &obj ) : bool |
Loads the specified object.
|
|
Unload ( ) : void |
Called when the plugin is unloaded.
|
public abstract CanLoadObject ( string path ) : bool | ||
path | string | The path to the file or folder that contains the object. |
return | bool |
public Load ( Hosts host ) : void | ||
host | Hosts | The host that loaded the plugin. |
return | void |
public abstract LoadObject ( string path, Object &obj ) : bool | ||
path | string | The path to the file or folder that contains the object. |
obj | Object | Receives the object. |
return | bool |