CapersProject/Assets/Behavior Designer/Runtime/Variables/SharedObjectList.cs
2024-06-04 03:26:03 +09:00

11 lines
324 B
C#

using UnityEngine;
using System.Collections.Generic;
namespace BehaviorDesigner.Runtime
{
[System.Serializable]
public class SharedObjectList : SharedVariable<List<Object>>
{
public static implicit operator SharedObjectList(List<Object> value) { return new SharedObjectList { mValue = value }; }
}
}