mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
7 lines
194 B
TypeScript
7 lines
194 B
TypeScript
import { LeaveGameReason } from 'types';
|
|
import { GamePersistence } from '../../persistence';
|
|
|
|
|
|
export function leaveGame(reason: LeaveGameReason): void {
|
|
GamePersistence.leaveGame(reason);
|
|
}
|