Files
clodanSPT 7b6f1eb9ad Added OnWebAppBuild load step (#489)
* 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>
2025-07-19 18:48:48 +01:00

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();
}