mancala/backend/src/matchmaker/MatchMaker.ts

6 lines
213 B
TypeScript
Raw Normal View History

2022-07-15 21:42:02 +03:00
export type OnPlayersPaired = (player1Id: string, player2Id: string)=> void;
export interface MatchMaker {
join(playerId : string): void;
listenOnPlayersPaired(onPlayersPaired: OnPlayersPaired ) : void;
}