Client LuaCsForBarotrauma
IAssemblyPlugin.cs
1 using System;
2 
3 namespace Barotrauma;
4 
5 public interface IAssemblyPlugin : IDisposable
6 {
10  void Initialize();
11 
16 
17 
22 }
void Initialize()
Called on plugin normal, use this for basic/core loading that does not rely on any other modded conte...
void PreInitPatching()
Called before Barotrauma initializes vanilla content. WARNING: This method may be called before Initi...
void OnLoadCompleted()
Called once all plugins have been loaded. if you have integrations with any other mod,...