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/body/projectile/projectile.js
Normal file
11
server/game/room/world/body/projectile/projectile.js
Normal file
|
@ -0,0 +1,11 @@
|
|||
'use strict';
|
||||
|
||||
const Body = require('../body.js');
|
||||
|
||||
class Projectile extends Body {
|
||||
constructor(world) {
|
||||
super(world);
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = Projectile;
|
Loading…
Add table
Add a link
Reference in a new issue