Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(371)

Unified Diff: sky/sdk/example/game/lib/sprites.dart

Issue 1227373004: Make Sky example game run offline (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sky/sdk/example/game/lib/sprites.dart
diff --git a/sky/sdk/example/game/lib/sprites.dart b/sky/sdk/example/game/lib/sprites.dart
index f926906282eae524b96ab2ff70f203a7ac468428..1cd9f905c40e498fefd435cdb6b8799b3513acf8 100644
--- a/sky/sdk/example/game/lib/sprites.dart
+++ b/sky/sdk/example/game/lib/sprites.dart
@@ -1,11 +1,16 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
library sprites;
+import 'dart:async';
import 'dart:math' as Math;
import 'dart:sky';
import 'dart:convert';
import 'package:sky/base/scheduler.dart' as scheduler;
-import 'package:sky/mojo/net/image_cache.dart' as image_cache;
+import 'package:sky/mojo/asset_bundle.dart';
import 'package:sky/rendering/box.dart';
import 'package:sky/rendering/object.dart';
import 'package:sky/widgets/widget.dart';

Powered by Google App Engine
This is Rietveld 408576698