Fix DarkTardMissingNamespacePatch, add some compiler stuff from normal plugin loader, and some code cleanup

This commit is contained in:
2023-07-03 16:23:42 -04:00
parent 856e7dce59
commit 40fa225b1c
11 changed files with 57 additions and 25 deletions

View File

@@ -58,12 +58,12 @@ public class ModPlugin : PluginData, ISteamItem
}
}
public override Assembly GetAssembly()
public override Assembly? GetAssembly()
{
return null;
}
public override bool TryLoadAssembly(out Assembly a)
public override bool TryLoadAssembly(out Assembly? a)
{
a = null;
return false;