12 lines
105 B
C#
12 lines
105 B
C#
![]() |
using UnityEngine;
|
||
|
|
||
|
namespace Delaunay
|
||
|
{
|
||
|
|
||
|
public interface ICoord
|
||
|
{
|
||
|
Vector2 Coord {
|
||
|
get;
|
||
|
}
|
||
|
}
|
||
|
}
|