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

Side by Side Diff: sky/examples/game/lib/sprites.dart

Issue 1218593002: Move sky/examples to sky/sdk/lib/example, and code changes to support that change. Fixes T277. (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 unified diff | Download patch
OLDNEW
(Empty)
1 library sprites;
2
3 import 'dart:math' as Math;
4 import 'dart:sky';
5 import 'dart:typed_data';
6 import 'dart:convert';
7
8 import 'package:sky/base/scheduler.dart' as scheduler;
9 import 'package:sky/mojo/net/image_cache.dart' as image_cache;
10 import 'package:sky/rendering/box.dart';
11 import 'package:sky/rendering/object.dart';
12 import 'package:sky/widgets/widget.dart';
13 import 'package:vector_math/vector_math.dart';
14 import 'package:sky/framework/net/fetch.dart';
15
16 part 'sprite_box.dart';
17 part 'sprite_widget.dart';
18 part 'node.dart';
19 part 'node_with_size.dart';
20 part 'sprite.dart';
21 part 'image_map.dart';
22 part 'texture.dart';
23 part 'spritesheet.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698