Whole codebase updated to TypeScript 0.9.1, phew!

This commit is contained in:
Richard Davey
2013-08-08 19:16:47 +01:00
parent df32190db8
commit 1248a6c06e
129 changed files with 38471 additions and 30343 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
/// <reference path="../Game.ts" />
/// <reference path="../_definitions.ts" />
/**
* Phaser - RequestAnimationFrame
@@ -15,7 +15,7 @@ module Phaser {
* @param {Any} callback
* @return {RequestAnimationFrame} This object.
*/
constructor(game: Game, callback) {
constructor(game: Phaser.Game, callback) {
this.game = game;
this.callback = callback;
@@ -35,7 +35,7 @@ module Phaser {
/**
* Local reference to Game.
*/
public game: Game;
public game: Phaser.Game;
/**
* The function to be called each frame. Will be called in the context of _game