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.
 
 
 
 

26 lines
449 B

using System;
using System.Diagnostics;
using UnityEngine;
using Logger = IPA.Logging.Logger;
namespace IPA.Injector
{
internal class Bootstrapper : MonoBehaviour
{
public event Action Destroyed = delegate {};
public void Awake()
{
}
public void Start()
{
Destroy(gameObject);
}
public void OnDestroy()
{
Destroyed();
}
}
}