mancala/backend/src/consts/channel_names.ts

13 lines
712 B
TypeScript
Raw Normal View History

2021-06-29 03:26:12 +03:00
export const channel_new_game = "new_game"
export const channel_on_game_start = "on_game_start"
export const channel_game_move = "game_move"
export const channel_on_game_update = "on_game_update"
export const channel_leave_game = "leave_game"
export const channel_on_game_end = "on_game_end"
export const channel_on_game_crashed = "on_game_crashed"
2022-07-16 18:00:39 +03:00
export const channel_on_game_user_leave = "on_game_user_leave"
export const channel_ping = "ping"
2022-07-23 00:32:55 +03:00
export const channel_pong = "pong"
2022-09-02 00:33:50 +03:00
export const channel_on_user_connection_change = "channel_on_user_connection_change"
export const channel_listen_game_events = "channel_listen_game_events"
export const channel_unlisten_game_events = "channel_unlisten_game_events"