restructure world files for copulae
This commit is contained in:
parent
41a3a295c6
commit
ccc77490ea
18 changed files with 163 additions and 29 deletions
11
server/game/room/world/shot/beam.js
Normal file
11
server/game/room/world/shot/beam.js
Normal file
|
@ -0,0 +1,11 @@
|
|||
'use strict';
|
||||
|
||||
const Shot = require('./shot.js');
|
||||
|
||||
class Beam extends Shot {
|
||||
constructor() {
|
||||
super();
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = Beam;
|
11
server/game/room/world/shot/bullet.js
Normal file
11
server/game/room/world/shot/bullet.js
Normal file
|
@ -0,0 +1,11 @@
|
|||
'use strict';
|
||||
|
||||
const Shot = require('./shot.js');
|
||||
|
||||
class Bullet extends Shot {
|
||||
constructor() {
|
||||
super();
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = Bullet;
|
9
server/game/room/world/shot/shot.js
Normal file
9
server/game/room/world/shot/shot.js
Normal file
|
@ -0,0 +1,9 @@
|
|||
'use strict';
|
||||
|
||||
class Shot {
|
||||
constructor() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = Beam;
|
Loading…
Add table
Add a link
Reference in a new issue