OldBlueWater/BlueWater/Assets/Behavior Designer/Runtime/Variables/SharedCollider.cs

10 lines
276 B
C#
Raw Normal View History

2023-09-11 03:34:42 +00:00
using UnityEngine;
namespace BehaviorDesigner.Runtime
{
[System.Serializable]
public class SharedCollider : SharedVariable<Collider>
{
public static implicit operator SharedCollider(Collider value) { return new SharedCollider { mValue = value }; }
}
}