Via Discord convo with @CptMoore and @m22spencer which solves most of the issues that I had with doing this sort of move. * Inject method containing ModTek loading code -- something like this, but tested for OS compatibility ```c# var path = Path.Combine(Application.streamingAssetsPath, "../../Mods/ModTek.dll"); if (File.Exists(path)) Assembly.LoadFrom(path).GetType("ModTek").GetMethod("Init").Invoke(null, null); ``` * Inject method call similar to how we were doing it before, calling said method * Migrate `LoadDLL` directly into ModTek * Migrate Injector project into ModTek solution
Via Discord convo with @CptMoore and @m22spencer which solves most of the issues that I had with doing this sort of move.
LoadDLLdirectly into ModTek