A fork of Eusth's IPA
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Injector.cs 594B

7 years ago
7 years ago
7 years ago
12345678910111213141516171819202122232425
  1. using System;
  2. using System.IO;
  3. using UnityEngine;
  4. namespace IllusionInjector
  5. {
  6. public static class Injector
  7. {
  8. private static bool injected = false;
  9. public static void Inject()
  10. {
  11. if (!injected)
  12. {
  13. injected = true;
  14. var bootstrapper = new GameObject("Bootstrapper").AddComponent<Bootstrapper>();
  15. bootstrapper.Destroyed += Bootstrapper_Destroyed;
  16. }
  17. }
  18. private static void Bootstrapper_Destroyed()
  19. {
  20. PluginComponent.Create();
  21. }
  22. }
  23. }