12 lines
137 B
C#
12 lines
137 B
C#
using UnityEngine;
|
|
|
|
namespace UltimateWater.Internal
|
|
{
|
|
public interface IPoint2D
|
|
{
|
|
Vector2 Position { get; }
|
|
|
|
void Destroy();
|
|
}
|
|
}
|