blob: b57601847595202be2e9f681ae576064c901aed0 (
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 SharedGameObjectList : SharedVariable<List<GameObject>>
{
public static implicit operator SharedGameObjectList(List<GameObject> value) { return new SharedGameObjectList { mValue = value }; }
}
}
|