Add few more interfaces (#5063)

This commit is contained in:
Zach H 2024-06-25 01:00:45 -04:00 committed by GitHub
parent e261e16d99
commit 8687163cca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
34 changed files with 359 additions and 90 deletions

View file

@ -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);
}
}