Skip to content

Commit

Permalink
Fix for Bad Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
HerpDerpinstine committed Jun 30, 2020
1 parent 480effa commit d660ff8
Show file tree
Hide file tree
Showing 9 changed files with 0 additions and 39 deletions.
1 change: 0 additions & 1 deletion MelonLoader.ModHandler/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ private static void OnApplicationStart()
UnhollowerSupport.Initialize();
}
SupportModule.Initialize();
ModSettingsMenu.Main.Setup();

MelonModLogger.Log("------------------------------");
MelonModLogger.Log("Unity " + UnityVersion);
Expand Down
1 change: 0 additions & 1 deletion MelonLoader.ModHandler/MelonLoader.ModHandler.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@
<Compile Include="MelonMod.cs" />
<Compile Include="MelonPlugin.cs" />
<Compile Include="ModPrefs.cs" />
<Compile Include="ModSettingsMenu.cs" />
<Compile Include="SceneHandler.cs" />
<Compile Include="SharpZipLib\BZip2\BZip2.cs" />
<Compile Include="SharpZipLib\BZip2\BZip2Constants.cs" />
Expand Down
1 change: 0 additions & 1 deletion MelonLoader.ModHandler/SupportModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ public interface ISupportModule
object StartCoroutine(IEnumerator coroutine);
void StopCoroutine(object coroutineToken);
void UnityDebugLog(string msg);
ModSettingsMenu.RenderHelper GetModSettingsMenuRenderHelper();
void Destroy();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@
</ItemGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.cs" />
<Compile Include="RenderHelper.cs" />
<Compile Include="SupportModule.cs" />
<Compile Include="Main.cs" />
<Compile Include="MelonCoroutines.cs" />
Expand Down
31 changes: 0 additions & 31 deletions MelonLoader.Support.Il2Cpp/RenderHelper.cs

This file was deleted.

1 change: 0 additions & 1 deletion MelonLoader.Support.Il2Cpp/SupportModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ public class Module : ISupportModule
public object StartCoroutine(IEnumerator coroutine) => MelonCoroutines.Start(coroutine);
public void StopCoroutine(object coroutineToken) => MelonCoroutines.Stop((IEnumerator)coroutineToken);
public void UnityDebugLog(string msg) => Debug.Log(msg);
public ModSettingsMenu.RenderHelper GetModSettingsMenuRenderHelper() => new RenderHelper();
public void Destroy() => MelonLoaderComponent.Destroy();
}
}
1 change: 0 additions & 1 deletion MelonLoader.Support.Mono.Pre2017.2/SupportModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ public class Module : ISupportModule
public object StartCoroutine(IEnumerator coroutine) => Main.comp.StartCoroutine(coroutine);
public void StopCoroutine(object coroutineToken) => Main.comp.StopCoroutine((Coroutine) coroutineToken);
public void UnityDebugLog(string msg) => Debug.Log(msg);
public ModSettingsMenu.RenderHelper GetModSettingsMenuRenderHelper() => null;
public void Destroy() => MelonLoaderComponent.Destroy();
}
}
1 change: 0 additions & 1 deletion MelonLoader.Support.Mono.Pre2017/SupportModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ public class Module : ISupportModule
public object StartCoroutine(IEnumerator coroutine) => Main.comp.StartCoroutine(coroutine);
public void StopCoroutine(object coroutineToken) => Main.comp.StopCoroutine((Coroutine) coroutineToken);
public void UnityDebugLog(string msg) => Debug.Log(msg);
public ModSettingsMenu.RenderHelper GetModSettingsMenuRenderHelper() => null;
public void Destroy() => MelonLoaderComponent.Destroy();
}
}
1 change: 0 additions & 1 deletion MelonLoader.Support.Mono/SupportModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ public class Module : ISupportModule
public object StartCoroutine(IEnumerator coroutine) => Main.comp.StartCoroutine(coroutine);
public void StopCoroutine(object coroutineToken) => Main.comp.StopCoroutine((Coroutine) coroutineToken);
public void UnityDebugLog(string msg) => Debug.Log(msg);
public ModSettingsMenu.RenderHelper GetModSettingsMenuRenderHelper() => null;
public void Destroy() => MelonLoaderComponent.Destroy();
}
}

0 comments on commit d660ff8

Please sign in to comment.