restructure world files for copulae

This commit is contained in:
Asraelite 2016-03-26 14:23:51 +00:00
parent 41a3a295c6
commit ccc77490ea
18 changed files with 163 additions and 29 deletions

View file

@ -0,0 +1,11 @@
'use strict';
const Shot = require('./shot.js');
class Beam extends Shot {
constructor() {
super();
}
}
module.exports = Beam;

View file

@ -0,0 +1,11 @@
'use strict';
const Shot = require('./shot.js');
class Bullet extends Shot {
constructor() {
super();
}
}
module.exports = Bullet;

View file

@ -0,0 +1,9 @@
'use strict';
class Shot {
constructor() {
}
}
module.exports = Beam;