adding genders of nouns

This commit is contained in:
lila 2026-07-23 16:48:25 +02:00
parent 7e02a03bda
commit 0770ff9ec6

View file

@ -18,3 +18,6 @@ export const LOBBY_STATUSES = ["waiting", "in_progress", "finished"] as const;
export type LobbyStatus = (typeof LOBBY_STATUSES)[number];
export const MAX_LOBBY_PLAYERS = 4;
export const NOUN_GENDERS = ["masculine", "feminine", "neuter"] as const;
export type NounGender = (typeof NOUN_GENDERS)[number];