RonaldoSetzer/GAME-Battleship

View on GitHub
src/battleship/game/events/AttackEvent.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Event } from "@robotlegsjs/core";

export class AttackEvent extends Event {
    public static SUCCESS = "success";
    public static FAIL = "fail";

    constructor(type: string) {
        super(type);
    }
}