10 lines
286 B (Stored with Git LFS)
C#
10 lines
286 B (Stored with Git LFS)
C#
using UnityEngine;
|
|
|
|
namespace BehaviorDesigner.Runtime
|
|
{
|
|
[System.Serializable]
|
|
public class SharedVector3Int : SharedVariable<Vector3Int>
|
|
{
|
|
public static implicit operator SharedVector3Int(Vector3Int value) { return new SharedVector3Int { mValue = value }; }
|
|
}
|
|
} |