From d83a6fb7d88f0eb22a09d4d61002bb77417f9758 Mon Sep 17 00:00:00 2001 From: Ess Date: Fri, 30 Nov 2012 16:37:42 -0500 Subject: [PATCH] PlatformGame uses new library --- PlatformGame.dart | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/PlatformGame.dart b/PlatformGame.dart index 1b36c9c..c1344d4 100644 --- a/PlatformGame.dart +++ b/PlatformGame.dart @@ -4,11 +4,8 @@ Platform game example @author Danny Hendrix **/ -#library('PlatformGame'); - -#import('dart:html'); - -#import('game/Game.dart'); +import 'dart:html'; +import 'lib/Game.dart'; void main() { @@ -16,4 +13,4 @@ void main() game.start(); document.on.keyDown.add(game.handleKey); document.on.keyUp.add(game.handleKey); -} \ No newline at end of file +}