blob: 26092e6aa3a43e865f65f8196a63ad136c982578 (
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 SharedObjectList : SharedVariable<List<Object>>
{
public static implicit operator SharedObjectList(List<Object> value) { return new SharedObjectList { mValue = value }; }
}
}
|