mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-06-17 22:48:04 +08:00

* Added MethodInfo support for basic methods with no arguments. * Added support for missing primitive types (char, short, byte) * Added CacheDictionary class (currently unsupported) * Cleaned up some stuff, using System.Reflection.MemberType instead of a custom enum.
35 lines
633 B
C#
35 lines
633 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using MelonLoader;
|
|
using UnityEngine;
|
|
|
|
namespace Explorer
|
|
{
|
|
public class CacheDictionary : CacheObjectBase
|
|
{
|
|
|
|
|
|
public override void Init()
|
|
{
|
|
//base.Init();
|
|
|
|
Value = "Unsupported";
|
|
}
|
|
|
|
public override void UpdateValue()
|
|
{
|
|
//base.UpdateValue();
|
|
|
|
|
|
}
|
|
|
|
public override void DrawValue(Rect window, float width)
|
|
{
|
|
GUILayout.Label("<color=red>Dictionary (unsupported)</color>", null);
|
|
}
|
|
}
|
|
}
|