remove type aliases

This commit is contained in:
seavor 2026-04-14 15:14:43 -05:00
parent 141f0e59f5
commit cea9ae62d8
58 changed files with 412 additions and 455 deletions

View file

@ -1,6 +1,7 @@
import { GameEventMeta, GameSayData } from 'types';
import type { Event_GameSay } from 'generated/proto/event_game_say_pb';
import type { GameEventMeta } from 'types';
import { GamePersistence } from '../../persistence';
export function gameSay(data: GameSayData, meta: GameEventMeta): void {
export function gameSay(data: Event_GameSay, meta: GameEventMeta): void {
GamePersistence.gameSay(meta.gameId, meta.playerId, data.message);
}