10 lines
236 B
C#
10 lines
236 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Cryville.Crtr.Browsing {
|
|
public abstract class PropertyValuePanel : MonoBehaviour {
|
|
public Action<object> Callback { protected get; set; }
|
|
public abstract object Value { get; set; }
|
|
}
|
|
}
|