mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-12 00:54:53 -07:00
Add few more interfaces (#5063)
This commit is contained in:
parent
e261e16d99
commit
8687163cca
34 changed files with 359 additions and 90 deletions
|
|
@ -52,4 +52,12 @@ export class RoomPersistence {
|
|||
static removeMessages(roomId: number, name: string, amount: number): void {
|
||||
console.log('removeMessages', roomId, name, amount);
|
||||
};
|
||||
|
||||
static gameCreated(roomId: number) {
|
||||
console.log('gameCreated', roomId);
|
||||
}
|
||||
|
||||
static joinedGame(roomId: number, gameId: number) {
|
||||
console.log('joinedGame', roomId, gameId);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue