mirror of https://github.com/flutter/pinball.git
parent
9fd7078968
commit
b2c0a66f7d
@ -0,0 +1,17 @@
|
|||||||
|
import 'package:flame_forge2d/flame_forge2d.dart';
|
||||||
|
import 'package:pinball/game/game.dart';
|
||||||
|
|
||||||
|
/// {@template chrome_dino}
|
||||||
|
/// Dinosour that gobbles up a [Ball], swivel his head around, and shoots it
|
||||||
|
/// back out.
|
||||||
|
/// {@endtemplate}
|
||||||
|
class ChromeDino extends BodyComponent with InitialPosition {
|
||||||
|
/// {@macro chrome_dino}
|
||||||
|
ChromeDino();
|
||||||
|
|
||||||
|
@override
|
||||||
|
Body createBody() {
|
||||||
|
// TODO: implement createBody
|
||||||
|
throw UnimplementedError();
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue