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