blob: 6872404ca2d64724c898eeb4281f1c5ac0c73624 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
using UnityEngine;
using System.Collections.Generic;
namespace BehaviorDesigner.Runtime
{
[System.Serializable]
public class SharedTransformList : SharedVariable<List<Transform>>
{
public static implicit operator SharedTransformList(List<Transform> value) { return new SharedTransformList { mValue = value }; }
}
}
|