splitter/splitter-cli/Point2f.cs

14 lines
170 B
C#

namespace splitter;
public struct Point2f
{
public float X;
public float Y;
public Point2f(float x, float y)
{
X = x;
Y = y;
}
}