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