reorder and rename hardpoints and particles

This commit is contained in:
asraelite 2016-10-18 17:35:14 +01:00
parent d302bd4149
commit ea533015ba
16 changed files with 65 additions and 64 deletions

View file

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