
This CL moves the bulk of the SkyView code out of the |framework| directory because the |framework| directory was redundant in Dart package import declarations. TBR=ianh@google.com Review URL: https://codereview.chromium.org/1177383006.
13 lines
282 B
Dart
13 lines
282 B
Dart
library game;
|
|
|
|
import 'dart:sky';
|
|
import 'dart:math' as Math;
|
|
import 'package:vector_math/vector_math_64.dart';
|
|
import 'sprites.dart';
|
|
import 'package:box2d/box2d.dart';
|
|
import 'package:sky/rendering/box.dart';
|
|
|
|
part 'game_world.dart';
|
|
part 'game_box.dart';
|
|
part 'game_tests.dart';
|