Put types and enums that both the server and web need into a common area
This commit is contained in:
parent
526b4c5771
commit
4c957cce07
4 changed files with 37 additions and 0 deletions
18
common/types/events/SaveShip.ts
Normal file
18
common/types/events/SaveShip.ts
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
/** The data the client must provide in the `SaveShip` event. */
|
||||
interface SaveShip {
|
||||
colour: string;
|
||||
ship: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* The event that get's sent out to all the other players on a successful
|
||||
* `SaveShip` event
|
||||
*/
|
||||
interface DesignUpdate {
|
||||
player: string;
|
||||
ship: string;
|
||||
colour: string;
|
||||
}
|
||||
|
||||
/** The response to the client that triggered the `SaveShip` event. */
|
||||
interface SaveShipResponse extends ServerResponse {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue