1
0
Files
tmi-practicum-2018-2019/TMI-practicum/Intersection.cs
2019-05-13 16:16:15 +02:00

14 lines
245 B
C#

namespace TMI_practicum
{
public struct Intersection
{
public readonly double X;
public readonly double Y;
public Intersection(double x, double y)
{
X = x;
Y = y;
}
}
}