Class NativeMod
A mod loaded via the local mod directory. This is usually returned by GetMod(String)
Inheritance
System.Object
NativeMod
Implements
Namespace: Mannequin.Bindings
Assembly: Collapse.dll
Syntax
public class NativeMod : object, IMannequinMod
Properties
ModSource
The source of this mod.
Declaration
public EModSource ModSource { get; }
Property Value
Type | Description |
---|---|
EModSource |
Methods
Send(Script, Object)
Send an object to this Mod. It can be received by binding to the Receive#modID Event.
Declaration
public void Send(Script sc, object obj)
Parameters
Type | Name | Description |
---|---|---|
Script | sc | (ignore - included) |
System.Object | obj | The object to send |