mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
21 lines
495 B
Dart
21 lines
495 B
Dart
library game;
|
|
|
|
import 'dart:async';
|
|
import 'dart:math' as math;
|
|
import 'dart:ui' as ui;
|
|
|
|
import 'package:flutter/rendering.dart';
|
|
import 'package:flutter_sprites/flutter_sprites.dart';
|
|
import 'package:vector_math/vector_math_64.dart';
|
|
|
|
part 'custom_actions.dart';
|
|
part 'explosions.dart';
|
|
part 'flash.dart';
|
|
part 'game_demo_node.dart';
|
|
part 'game_objects.dart';
|
|
part 'game_object_factory.dart';
|
|
part 'player_state.dart';
|
|
part 'power_bar.dart';
|
|
part 'repeated_image.dart';
|
|
part 'star_field.dart';
|