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

@ -8,7 +8,6 @@
// Server-Client Communications // Server-Client Communications
export * from "./types/ServerResponse"; export * from "./types/ServerResponse";
export * from "./types/events/SaveShip";
export * from "./types/events/server_info"; export * from "./types/events/server_info";
// Lobby events // Lobby events

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 {}