phaser/v3/src/phaser.js

72 lines
1.3 KiB
JavaScript
Raw Normal View History

2016-11-22 03:11:33 +00:00
require('./polyfills');
var CONST = require('./const');
var Extend = require('./utils/object/Extend');
// This object is exported globally
2016-11-22 03:11:33 +00:00
var Phaser = {
2016-11-22 03:11:33 +00:00
Actions: require('./actions/'),
Create: require('./create/'),
DOM: require('./dom/'),
Game: require('./boot/Game'),
Event: require('./events/Event'),
EventDispatcher: require('./events/EventDispatcher'),
Math: require('./math'),
Geom: require('./geom'),
Graphics: require('./graphics'),
Input: require('./input'),
GameObjects: require('./gameobjects'),
Scene: require('./scene/Scene'),
2017-02-06 23:59:15 +00:00
Loader: {
ImageFile: require('./loader/filetypes/ImageFile')
},
Sound: require('./sound'),
2017-07-11 23:48:56 +00:00
Structs: require('./structs'),
2017-03-08 23:53:53 +00:00
Physics: require('./physics'),
Class: require('./utils/Class'),
Utils: require('./utils')
};
// Merge in the consts
Phaser = Extend(false, Phaser, CONST);
// Export it
module.exports = Phaser;
global.Phaser = Phaser;
2017-01-05 17:06:57 +00:00
/*
2017-04-05 00:15:53 +00:00
* "Documentation is like sex: when it is good, it is very, very good;
* and when it is bad, it is better than nothing."
* -- Dick Brandon
*/
/*
* "Sometimes, the elegant implementation is just a function.
* Not a method. Not a class. Not a framework. Just a function."
* -- John Carmack
2017-01-05 17:06:57 +00:00
*/