Skip to content

Commit

Permalink
Proper javadoc on LobbyInitMode
Browse files Browse the repository at this point in the history
  • Loading branch information
Brutus5000 committed Dec 6, 2024
1 parent 92b4366 commit 71c50d9
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,14 @@
@Getter
@RequiredArgsConstructor
public enum LobbyInitMode {
/**
* normal lobby screen with game option selections
*/
NORMAL("normal", 0),
AUTO("auto", 1); // Normal = normal lobby, Auto = skip lobby screen (e.g. ranked)
/**
* Skip lobby screen (for matchmaker games)
*/
AUTO("auto", 1);

private final String name;
private final int id;
Expand Down

0 comments on commit 71c50d9

Please sign in to comment.