feat: included initial file

pull/76/head
alestiago 4 years ago
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();
}
}

@ -3,6 +3,7 @@ export 'baseboard.dart';
export 'board.dart';
export 'board_side.dart';
export 'bonus_word.dart';
export 'chrome_dino.dart';
export 'flipper.dart';
export 'initial_position.dart';
export 'jetpack_ramp.dart';

Loading…
Cancel
Save