CapersProject/Assets/Behavior Designer/Runtime/Variables/SharedRect.cs

10 lines
256 B
C#
Raw Normal View History

2024-06-03 18:26:03 +00:00
using UnityEngine;
namespace BehaviorDesigner.Runtime
{
[System.Serializable]
public class SharedRect : SharedVariable<Rect>
{
public static implicit operator SharedRect(Rect value) { return new SharedRect { mValue = value }; }
}
}