RonaldoSetzer/GAME-Battleship

View on GitHub
src/battleship/game/models/Player.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { BattleField } from "./BattleField";
import { Grid } from "./Grid";

export class Player {
    public static ENEMY: string = "ENEMY";
    public static HERO: string = "HERO";
}