4 lines
157 B
TypeScript
4 lines
157 B
TypeScript
export interface StartGamePlayCommand {
|
|
gameId: string; // Game ID to start
|
|
userId?: string; // User who is starting the game (should be game master)
|
|
} |