7 lines
70 B
Dart
7 lines
70 B
Dart
class Eov {
|
|
double X = 0;
|
|
double Y = 0;
|
|
|
|
Eov(this.X, this.Y);
|
|
}
|