Add \n in enum
All checks were successful
Rust Checks / checks (push) Successful in 1m2s
Rust Checks / checks (pull_request) Successful in 1m2s

This commit is contained in:
CoCo_Sol 2024-02-10 00:38:24 +01:00
parent e9d7052746
commit b374c9d210

View file

@ -10,8 +10,10 @@ pub enum GameState {
/// When we are in the main menu. /// When we are in the main menu.
#[default] #[default]
Menu, Menu,
/// When we are in the lobby waiting for players. /// When we are in the lobby waiting for players.
Lobby, Lobby,
/// When we play this wonderful game. /// When we play this wonderful game.
Game, Game,
} }