using System; namespace ACE.Server.Mods { /// /// Defines interactions between mods and their ACE.Server host /// public interface IHarmonyMod : IDisposable //, IAsyncDisposable //Todo: Decide on async support { //https://github.com/natemcmaster/DotNetCorePlugins#what-is-a-shared-type void Initialize(); } }