diff options
author | Tyler Murphy <tylerm@tylerm.dev> | 2023-06-29 21:52:26 -0400 |
---|---|---|
committer | Tyler Murphy <tylerm@tylerm.dev> | 2023-06-29 21:52:26 -0400 |
commit | 484409b64d0a1dadcf35fa664ecf3dcd4808a83a (patch) | |
tree | ba9bd26d0914f369d3eafa8a04b12bec69a70fcc /client/src/types.ts | |
parent | when players die, they should acutally fucking die (diff) | |
download | tuxman-484409b64d0a1dadcf35fa664ecf3dcd4808a83a.tar.gz tuxman-484409b64d0a1dadcf35fa664ecf3dcd4808a83a.tar.bz2 tuxman-484409b64d0a1dadcf35fa664ecf3dcd4808a83a.zip |
custom map overrides
Diffstat (limited to 'client/src/types.ts')
-rw-r--r-- | client/src/types.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/client/src/types.ts b/client/src/types.ts index 01f4e3a..d08bc03 100644 --- a/client/src/types.ts +++ b/client/src/types.ts @@ -194,6 +194,7 @@ export type Player = { export type PlayerInput = { start: boolean, key: Key, + maps: {[key: number]: string} name?: string } |