OldBlueWater/BlueWater/Assets/02.Scripts/WayPoint.cs

13 lines
305 B
C#
Raw Normal View History

using System;
using UnityEngine;
// ReSharper disable once CheckNamespace
namespace BlueWaterProject
{
[Serializable]
public class WayPoint
{
[field: SerializeField] public Vector3 Point { get; set; }
[field: SerializeField] public float WaitTime { get; private set; }
}
}