mirror of
https://github.com/photonstorm/phaser
synced 2024-11-13 00:17:24 +00:00
22 lines
628 B
TypeScript
22 lines
628 B
TypeScript
/**
|
|
* Phaser
|
|
*
|
|
* v1.0.0 - June XX 2013
|
|
*
|
|
* A small and feature-packed 2D canvas game framework born from the firey pits of Flixel and Kiwi.
|
|
*
|
|
* Richard Davey (@photonstorm)
|
|
*
|
|
* Many thanks to Adam Saltsman (@ADAMATOMIC) for releasing Flixel, from both which Phaser
|
|
* and my love of game development took a lot of inspiration.
|
|
*
|
|
* "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
|
|
*/
|
|
|
|
module Phaser {
|
|
|
|
export var VERSION: string = 'Phaser version 1.0.0';
|
|
|
|
}
|