mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-09 15:54:47 -07:00
6 lines
246 B
TypeScript
6 lines
246 B
TypeScript
import { BackendService } from '../../services/BackendService';
|
|
import { GameSayParams } from 'types';
|
|
|
|
export function gameSay(gameId: number, params: GameSayParams): void {
|
|
BackendService.sendGameCommand(gameId, 'Command_GameSay', params);
|
|
}
|