mirror of
https://github.com/flame-engine/flame.git
synced 2025-11-02 11:43:19 +08:00
8 lines
101 B
Dart
8 lines
101 B
Dart
class Position {
|
|
double x, y;
|
|
|
|
Position(this.x, this.y);
|
|
|
|
Position.empty() : this(0.0, 0.0);
|
|
}
|