You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pinball/lib/game/game_assets.dart

13 lines
304 B

import 'package:pinball/game/game.dart';
/// Add methods to help loading and caching game assets
extension PinballGameAssetsX on PinballGame {
/// Pre load the initial assets of the game
Future<void> preLoadAssets() async {
await Future.wait([
images.load(Ball.spritePath),
]);
}
}