A fork of Eusth's IPA
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

24 lignes
563B

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