can you listen? pls

This commit is contained in:
BuildTools
2020-07-25 20:27:59 +02:00
parent 6a53d002e2
commit ed3aaab97e
18 changed files with 259 additions and 67 deletions

22
Datalaag/Punt.cs Normal file
View File

@@ -0,0 +1,22 @@
using System;
namespace Datalaag
{
public class Punt
{
public double X, Y;
public string Naam;
public Punt(double x, double y, string naam = "")
{
Naam = naam;
X = x;
Y = y;
}
public override string ToString()
{
if (string.Equals(Naam, "", StringComparison.Ordinal)) return "UNKNOWN";
else return Naam;
}
}
}