mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
12 lines
374 B
TypeScript
12 lines
374 B
TypeScript
import { PlayerGamePropertiesData } from '../events/session/interfaces';
|
|
import { LeaveGameReason } from '../../types';
|
|
|
|
export class GamePersistence {
|
|
static joinGame(playerGamePropertiesData: PlayerGamePropertiesData) {
|
|
console.log('joinGame', playerGamePropertiesData);
|
|
}
|
|
|
|
static leaveGame(reason: LeaveGameReason) {
|
|
console.log('leaveGame', reason);
|
|
}
|
|
}
|