mirror of
https://github.com/flame-engine/flame.git
synced 2025-11-02 11:43:19 +08:00
22 lines
402 B
Dart
22 lines
402 B
Dart
import 'package:flame/anchor.dart';
|
|
import 'package:flame/components/component.dart';
|
|
|
|
import 'dart:ui';
|
|
|
|
class Square extends PositionComponent {
|
|
final Paint _paint;
|
|
|
|
Square(this._paint, double x, double y) {
|
|
width = 100;
|
|
height = 100;
|
|
this.x = x;
|
|
this.y = y;
|
|
anchor = Anchor.center;
|
|
}
|
|
|
|
@override
|
|
void render(Canvas canvas) {
|
|
canvas.drawRect(toRect(), _paint);
|
|
}
|
|
}
|