2018 support test

This commit is contained in:
sinaioutlander
2020-08-12 03:51:47 +10:00
parent 0b78b4398f
commit 2ba6f27a27
18 changed files with 3372 additions and 9 deletions

View File

@ -0,0 +1,34 @@
using System.Collections;
//using Il2CppSystem;
using MelonLoader;
using UnityEngine;
using System;
using Object = UnityEngine.Object;
namespace Explorer
{
public class ReplHelper : MonoBehaviour
{
public ReplHelper(IntPtr intPtr) : base(intPtr) { }
public T Find<T>() where T : Object
{
return FindObjectOfType<T>();
}
public T[] FindAll<T>() where T : Object
{
return FindObjectsOfType<T>();
}
public object RunCoroutine(IEnumerator enumerator)
{
return MelonCoroutines.Start(enumerator);
}
public void EndCoroutine(Coroutine c)
{
StopCoroutine(c);
}
}
}