diff options
author | metamuffin <metamuffin@disroot.org> | 2025-06-03 20:54:33 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-06-03 20:54:33 +0200 |
commit | e0201e044482b1a577dac7574bb56d44a20bf011 (patch) | |
tree | 5cfc6a224ef349317e9213d4789ce9a2b3f862e8 /test-client/protocol.ts | |
parent | d279baccdbaf37ae4410af1875e98597fe0b5565 (diff) | |
download | hurrycurry-e0201e044482b1a577dac7574bb56d44a20bf011.tar hurrycurry-e0201e044482b1a577dac7574bb56d44a20bf011.tar.bz2 hurrycurry-e0201e044482b1a577dac7574bb56d44a20bf011.tar.zst |
add tram player class
Diffstat (limited to 'test-client/protocol.ts')
-rw-r--r-- | test-client/protocol.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-client/protocol.ts b/test-client/protocol.ts index 6a1d2909..a3302628 100644 --- a/test-client/protocol.ts +++ b/test-client/protocol.ts @@ -103,7 +103,7 @@ export type ItemLocation = { player: [PlayerID, Hand] } | { tile: Vec2 } -export type PlayerClass = "chef" | "bot" | "customer" +export type PlayerClass = "chef" | "bot" | "customer" | "tram" export type DocumentElement = { t: "document", es: DocumentElement[] } |