first commit

This commit is contained in:
2025-07-03 00:06:32 -06:00
commit f739c6b3c7
33 changed files with 8197 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
// Re-export generated schema classes
export { Player } from './Player'
export { GameState } from './GameState'
// Additional types that are not Schema classes
export interface GameRoomOptions {
gameMode?: string;
playerName?: string;
}