This commit is contained in:
yohlo
2025-08-20 22:35:40 -05:00
commit f51c278cd3
169 changed files with 8173 additions and 0 deletions

10
src/lib/events/emitter.ts Normal file
View File

@@ -0,0 +1,10 @@
import { EventEmitter } from "events";
export const serverEvents = new EventEmitter();
export type TestEvent = {
type: "test";
playerId: string;
};
export type ServerEvent = TestEvent;