wingbase/server/game/room/world/copula/copula.js
2016-03-26 20:23:05 +00:00

16 lines
221 B
JavaScript

'use strict';
class Copula {
constructor(b1, b2, p1, p2) {
this.bodyA = b1;
this.bodyB = b2;
this.pointA = p1 || b1.com;
this.pointB = p2 || b2.com;
}
packFull() {
return {};
}
}
module.exports = Copula;