mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-06-17 06:28:42 +08:00
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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|