mirror of https://github.com/flutter/pinball.git
parent
d5f41277c8
commit
6b3f02c5af
@ -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