namespace SPTarkov.Server.Core.Models.External; /// /// This interface used to be used in TS to load mods after SPT finished loading. /// This class is now deprecated and should not be used, see code example below for replacement. /// /// /// [Injectable(TypePriority = OnLoadOrder.RagfairCallbacks + 1)] /// public class MyMod : IOnLoad /// { /// // ... implementation /// } /// /// /// DEPRECATED, see code example above for replacement! /// [Obsolete("This interface is obsolete and will be removed in 4.1.0, please use IOnLoad instead with the desired Injectable(TypePriority). See class documentation for examples.")] public interface IPostSptLoadModAsync { Task PostSptLoadAsync(); }