OldBlueWater/BlueWater/Assets/02.Scripts/Ai/BehaviorTree/Variable/SharedIslandInfo.cs

11 lines
332 B
C#
Raw Normal View History

2023-09-11 07:16:02 +00:00
using BlueWaterProject;
// ReSharper disable once CheckNamespace
namespace BehaviorDesigner.Runtime
{
[System.Serializable]
public class SharedIslandInfo : SharedVariable<IslandInfo>
{
public static implicit operator SharedIslandInfo(IslandInfo value) { return new SharedIslandInfo { mValue = value }; }
}
}