wingbase/server/game/room/world/body.js
2016-03-21 20:44:15 +00:00

11 lines
141 B
JavaScript

'use strict';
class Body {
constructor() {
this.b2body = false;
this.type = 'dynamic';
this.health = 1;
}
}
module.exports = Body;