| Index: samples/pop_pop_win/lib/src/html.dart
|
| diff --git a/samples/pop_pop_win/lib/src/html.dart b/samples/pop_pop_win/lib/src/html.dart
|
| deleted file mode 100644
|
| index d01fdbc74b72460038aae5a273fd0a8711924fb7..0000000000000000000000000000000000000000
|
| --- a/samples/pop_pop_win/lib/src/html.dart
|
| +++ /dev/null
|
| @@ -1,31 +0,0 @@
|
| -library pop_pop_win.html;
|
| -
|
| -import 'dart:async';
|
| -import 'dart:html';
|
| -
|
| -import 'package:bot/bot.dart';
|
| -import 'package:pop_pop_win/platform_target.dart';
|
| -
|
| -import 'game.dart';
|
| -
|
| -part 'html/high_score_view.dart';
|
| -part 'html/game_view.dart';
|
| -part 'html/game_storage.dart';
|
| -part 'html/game_manager.dart';
|
| -
|
| -PlatformTarget _platformImpl;
|
| -
|
| -void initPlatform(PlatformTarget value) {
|
| - assert(value != null);
|
| - assert(!value.initialized);
|
| - assert(_platformImpl == null);
|
| - _platformImpl = value;
|
| - _platformImpl.initialize();
|
| -}
|
| -
|
| -PlatformTarget get targetPlatform {
|
| - if (_platformImpl == null) {
|
| - initPlatform(new PlatformTarget());
|
| - }
|
| - return _platformImpl;
|
| -}
|
|
|