27 lines
573 B
C#
27 lines
573 B
C#
using System.Reflection;
|
|
using Core.Loaders;
|
|
using Core.Models.External;
|
|
using SptCommon.Annotations;
|
|
|
|
namespace _12Bundle;
|
|
|
|
[Injectable]
|
|
public class Bundle : IPostDBLoadMod
|
|
{
|
|
private readonly BundleLoader _bundleLoader;
|
|
|
|
|
|
public Bundle(
|
|
BundleLoader bundleLoader)
|
|
{
|
|
_bundleLoader = bundleLoader;
|
|
}
|
|
|
|
public void PostDBLoad()
|
|
{
|
|
var modFolder = Directory.GetCurrentDirectory();
|
|
var test = Assembly.GetExecutingAssembly().Location;
|
|
_bundleLoader.AddBundles(Path.Join(modFolder, "/user/mods/Mod3/"));
|
|
}
|
|
}
|