2013-04-20 00:24:38 +00:00
|
|
|
var Phaser;
|
|
|
|
(function (Phaser) {
|
2013-05-22 23:01:58 +00:00
|
|
|
Phaser.VERSION = 'Phaser version 0.9.6';
|
2013-05-25 03:21:24 +00:00
|
|
|
Phaser.Point = (typeof Float32Array !== 'undefined') ? Float32Array : Array;
|
|
|
|
Phaser.Vec2 = (typeof Float32Array !== 'undefined') ? Float32Array : Array;
|
|
|
|
Phaser.Matrix = (typeof Float32Array !== 'undefined') ? Float32Array : Array;
|
|
|
|
})(Phaser || (Phaser = {}));
|
|
|
|
var Phaser;
|
|
|
|
(function (Phaser) {
|
|
|
|
(function (Geom2) {
|
|
|
|
var Point = (function () {
|
|
|
|
function Point() { }
|
|
|
|
Point.prototype.add = function (a, b) {
|
|
|
|
a[0] = b[0];
|
|
|
|
return a;
|
|
|
|
};
|
|
|
|
return Point;
|
|
|
|
})();
|
|
|
|
Geom2.Point = Point;
|
|
|
|
})(Phaser.Geom2 || (Phaser.Geom2 = {}));
|
|
|
|
var Geom2 = Phaser.Geom2;
|
2013-04-20 00:24:38 +00:00
|
|
|
})(Phaser || (Phaser = {}));
|