mirror of
https://github.com/Mercantec-GHC/h4-projekt-gruppe-0-sm.git
synced 2025-04-28 00:34:06 +02:00
7 lines
108 B
Dart
7 lines
108 B
Dart
class Coordinate {
|
|
final double x;
|
|
final double y;
|
|
|
|
Coordinate({required this.x, required this.y});
|
|
}
|