Remove unused file

This commit is contained in:
Oliver-Akins 2022-01-06 16:28:48 -07:00
parent 0dc55876cf
commit f25d1ef965
2 changed files with 0 additions and 21 deletions

View file

@ -1,20 +0,0 @@
import { ServerResponse } from "../ServerResponse";
/** The data the client must provide in the `put.player.design` event. */
export interface SaveShip {
colour: string;
ship: string;
}
/**
* The event that get's sent out to all the other players on a successful
* `put.player.design` event
*/
export interface DesignUpdate {
player: string;
ship: string;
colour: string;
}
/** The response to the client that triggered the `put.player.design` event. */
export interface SaveShipResponse extends ServerResponse {}