mirror of
https://github.com/GrahamKracker/UnityExplorer.git
synced 2025-07-02 19:42:38 +08:00
18 lines
349 B
C#
18 lines
349 B
C#
using UnityEngine;
|
|
|
|
namespace Explorer
|
|
{
|
|
public class CacheGameObject : CacheObjectBase
|
|
{
|
|
public override void DrawValue(Rect window, float width)
|
|
{
|
|
UIHelpers.GOButton(Value, null, false, width);
|
|
}
|
|
|
|
public override void UpdateValue()
|
|
{
|
|
base.UpdateValue();
|
|
}
|
|
}
|
|
}
|