Fix linting
This commit is contained in:
parent
e5e928d99a
commit
e6376ad059
23 changed files with 33 additions and 58 deletions
|
|
@ -25,6 +25,7 @@ export class CharacterBase extends GameObject {
|
|||
super(id);
|
||||
}
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
public onShoot(strength: number) {}
|
||||
|
||||
public setHealth(health: number) {
|
||||
|
|
|
|||
|
|
@ -23,6 +23,7 @@ export class PlanetBase extends GameObject {
|
|||
this.vertices.length;
|
||||
}
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
public generatedPoints(value: number) {}
|
||||
|
||||
public static createPlanetVertices(
|
||||
|
|
|
|||
|
|
@ -4,7 +4,6 @@ import { serializable } from '../../serialization/serializable';
|
|||
import { GameObject } from '../game-object';
|
||||
import { Id } from '../../communication/id';
|
||||
import { CharacterTeam } from './character-base';
|
||||
import { CommandExecutors } from '../../commands/command-executors';
|
||||
|
||||
@serializable
|
||||
export class ProjectileBase extends GameObject {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue