Client LuaCsForBarotrauma
IAssemblyPlugin Interface Reference
Inheritance diagram for IAssemblyPlugin:
Barotrauma.ACsMod

Public Member Functions

void Initialize ()
 Called on plugin normal, use this for basic/core loading that does not rely on any other modded content. More...
 
void OnLoadCompleted ()
 Called once all plugins have been loaded. if you have integrations with any other mod, put that code here. More...
 
void PreInitPatching ()
 Called before Barotrauma initializes vanilla content. WARNING: This method may be called before Initialize()! More...
 

Detailed Description

Definition at line 5 of file IAssemblyPlugin.cs.

Member Function Documentation

◆ Initialize()

void IAssemblyPlugin.Initialize ( )

Called on plugin normal, use this for basic/core loading that does not rely on any other modded content.

Implemented in Barotrauma.ACsMod.

◆ OnLoadCompleted()

void IAssemblyPlugin.OnLoadCompleted ( )

Called once all plugins have been loaded. if you have integrations with any other mod, put that code here.

Implemented in Barotrauma.ACsMod.

◆ PreInitPatching()

void IAssemblyPlugin.PreInitPatching ( )

Called before Barotrauma initializes vanilla content. WARNING: This method may be called before Initialize()!

Implemented in Barotrauma.ACsMod.