Files
SPT-Server-Build/Core/Models/Spt/Mod/ModLoader.cs
T

16 lines
344 B
C#

namespace Core.Models.Spt.Mod;
public class ModLoader
{
public void Load(DependencyContainer container)
{
throw new NotImplementedException();
}
public string GetModPath(string mod)
{
throw new NotImplementedException();
}
}
// TODO: This needs to be reworked with however we do it for this project