Files
2026-03-04 10:03:45 +08:00

12 lines
137 B
C#

using UnityEngine;
namespace UltimateWater.Internal
{
public interface IPoint2D
{
Vector2 Position { get; }
void Destroy();
}
}