More stuff (#5056)

* Skeleton + RemoveMessages

* GameJoinedData
This commit is contained in:
Zach H 2024-06-16 23:26:03 -04:00 committed by GitHub
parent 291c535edb
commit 0994d10410
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 41 additions and 2 deletions

View file

@ -48,4 +48,8 @@ export class RoomPersistence {
static userLeft(roomId: number, name: string) {
RoomsDispatch.userLeft(roomId, name);
}
static removeMessages(roomId: number, name: string, amount: number): void {
console.log('removeMessages', roomId, name, amount);
};
}