Files
2026-02-21 16:45:37 +08:00

12 lines
137 B
C#

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