phaser/Phaser/Phaser.ts

28 lines
708 B
TypeScript
Raw Normal View History

/// <reference path="_definitions.ts" />
2013-04-18 14:16:18 +01:00
/**
2013-04-18 16:49:08 +01:00
* Phaser
2013-08-08 11:34:33 +01:00
* www.phaser.io
2013-04-18 14:16:18 +01:00
*
2013-08-02 12:38:56 +01:00
* v1.0.0 - August 12th 2013
2013-04-18 14:16:18 +01:00
*
2013-08-02 12:38:56 +01:00
* A feature-packed 2D canvas game framework born from the firey pits of Flixel and Kiwi.
2013-04-18 14:16:18 +01:00
*
2013-04-18 16:49:08 +01:00
* Richard Davey (@photonstorm)
2013-04-18 14:16:18 +01:00
*
2013-05-28 21:38:37 +01:00
* Many thanks to Adam Saltsman (@ADAMATOMIC) for releasing Flixel, from both which Phaser
* and my love of game development took a lot of inspiration.
2013-04-18 16:49:08 +01:00
*
* "If you want your children to be intelligent, read them fairy tales."
* "If you want them to be more intelligent, read them more fairy tales."
* -- Albert Einstein
2013-04-18 14:16:18 +01:00
*/
module Phaser {
2013-05-28 21:38:37 +01:00
export var VERSION: string = 'Phaser version 1.0.0';
2013-04-18 14:16:18 +01:00
export var GAMES = [];
2013-04-18 14:16:18 +01:00
}