A fork of Eusth's IPA
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

29 строки
614B

  1. using System;
  2. using UnityEngine;
  3. namespace IllusionInjector
  4. {
  5. internal class Bootstrapper : MonoBehaviour
  6. {
  7. public event Action Destroyed = delegate { };
  8. private void Awake()
  9. {
  10. if (Environment.CommandLine.Contains("--verbose") && (!Screen.fullScreen || Environment.CommandLine.Contains("--ipa-console")))
  11. {
  12. Windows.GuiConsole.CreateConsole();
  13. }
  14. }
  15. private void Start()
  16. {
  17. Destroy(gameObject);
  18. }
  19. private void OnDestroy()
  20. {
  21. Destroyed();
  22. }
  23. }
  24. }