0
0
Fork 0
mirror of https://github.com/liabru/matter-js.git synced 2024-11-23 09:26:51 -05:00

RenderPixi.js - added missing dependencies

Bounds and Vector were missing from the requires
This commit is contained in:
Nicolas Garnier 2016-04-25 12:40:47 +02:00
parent 326816fcf7
commit aec19aecbb

View file

@ -9,8 +9,10 @@ var RenderPixi = {};
module.exports = RenderPixi;
var Bounds = require('../geometry/Bounds');
var Composite = require('../body/Composite');
var Common = require('../core/Common');
var Vector = require('../geometry/Vector');
(function() {