more integration tests

This commit is contained in:
seavor 2026-04-16 12:40:47 -05:00
parent 4b5f66d497
commit decebc25c7
192 changed files with 3090 additions and 1657 deletions

View file

@ -1,6 +1,7 @@
import type { Data, Enriched } from '@app/types';
import type { Event_CreateCounter } from '@app/generated';
import type { GameEventMeta } from '../../types';
import { WebClient } from '../../WebClient';
export function createCounter(data: Data.Event_CreateCounter, meta: Enriched.GameEventMeta): void {
export function createCounter(data: Event_CreateCounter, meta: GameEventMeta): void {
WebClient.instance.response.game.counterCreated(meta.gameId, meta.playerId, data);
}