mirror of
https://github.com/unclshura/splitter.git
synced 2026-06-21 16:12:01 +00:00
14 lines
170 B
C#
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;
|
|
}
|
|
}
|