RonaldoSetzer/GAME-Battleship

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

Summary

Maintainability
A
0 mins
Test Coverage
export class Tile {
    public static HITTED: number = -1;
    public static BLANKED: number = 0;

    public col: number;
    public row: number;

    constructor(col: number = 0, row: number = 0) {
        this.col = col;
        this.row = row;
    }
}