Files
UnityExplorer/src/CachedObjects/Object/CacheGameObject.cs
2020-09-18 18:38:11 +10:00

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();
}
}
}