Remove unused file
This commit is contained in:
parent
0dc55876cf
commit
f25d1ef965
2 changed files with 0 additions and 21 deletions
|
|
@ -8,7 +8,6 @@
|
|||
|
||||
// Server-Client Communications
|
||||
export * from "./types/ServerResponse";
|
||||
export * from "./types/events/SaveShip";
|
||||
export * from "./types/events/server_info";
|
||||
|
||||
// Lobby events
|
||||
|
|
|
|||
|
|
@ -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 {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue