11 lines
141 B
JavaScript
11 lines
141 B
JavaScript
'use strict';
|
|
|
|
class Body {
|
|
constructor() {
|
|
this.b2body = false;
|
|
this.type = 'dynamic';
|
|
this.health = 1;
|
|
}
|
|
}
|
|
|
|
module.exports = Body;
|