Files
SoulliesOfficial ac98ec3aef 更新
2026-04-17 12:01:50 -04:00

18 lines
335 B
C#

using UnityEngine;
namespace SLSUtilities.General
{
[System.Serializable]
public class UnityObjectWrapper<T> where T : class
{
[SerializeField] private Object value;
public T Value => value as T;
public UnityObjectWrapper(Object value)
{
this.value = value;
}
}
}