
What's important about this code is that it's presenting services outside the VM, not the particular technology used to present the services.
43 lines
1.1 KiB
Dart
43 lines
1.1 KiB
Dart
// 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 skysprites;
|
|
|
|
import 'dart:async';
|
|
import 'dart:convert';
|
|
import 'dart:math' as math;
|
|
import 'dart:typed_data';
|
|
import 'dart:sky';
|
|
|
|
import 'package:mojo/core.dart';
|
|
import 'package:sky/animation.dart';
|
|
import 'package:sky/painting.dart';
|
|
import 'package:sky/services.dart';
|
|
import 'package:sky/src/rendering/box.dart';
|
|
import 'package:sky/src/rendering/object.dart';
|
|
import 'package:sky/src/widgets/framework.dart';
|
|
import 'package:sky_services/media/media.mojom.dart';
|
|
import 'package:vector_math/vector_math.dart';
|
|
|
|
part 'action.dart';
|
|
part 'constraint.dart';
|
|
part 'action_spline.dart';
|
|
part 'color_secuence.dart';
|
|
part 'image_map.dart';
|
|
part 'label.dart';
|
|
part 'layer.dart';
|
|
part 'node.dart';
|
|
part 'node3d.dart';
|
|
part 'node_with_size.dart';
|
|
part 'particle_system.dart';
|
|
part 'sound.dart';
|
|
part 'sound_manager.dart';
|
|
part 'sprite.dart';
|
|
part 'spritesheet.dart';
|
|
part 'sprite_box.dart';
|
|
part 'sprite_widget.dart';
|
|
part 'texture.dart';
|
|
part 'util.dart';
|
|
part 'virtual_joystick.dart';
|