7b6f1eb9ad
* Fingers crossed this will fix the mod loading issue for configs * Renamed classes and documentation for clarity * Remove some extra traces of the old PreSptLoader * Renamed interface for clarity and updated docs * Re-introduced PreSptModLoad for now --------- Co-authored-by: Alex <clodanSPT@hotmail.com>
10 lines
283 B
C#
10 lines
283 B
C#
namespace SPTarkov.Server.Core.Models.External;
|
|
|
|
/// <summary>
|
|
/// Interface used to make changes before any of the SPT server logic runs. After the Watermark print, but before the Database loads
|
|
/// </summary>
|
|
public interface IPreSptLoadModAsync
|
|
{
|
|
Task PreSptLoadAsync();
|
|
}
|