Good javadocs

They're not good they're shit I lied to you
This commit is contained in:
Brady 2018-10-08 17:12:51 -05:00
parent 5a9e5cdac4
commit 0ee14b4b90
No known key found for this signature in database
GPG Key ID: 73A788379A197567
1 changed files with 7 additions and 0 deletions

View File

@ -485,7 +485,14 @@ public class Settings {
*/
public Setting<Color> colorGoalBox = new Setting<>(Color.GREEN);
/**
* A map of lowercase setting field names to their respective setting
*/
public final Map<String, Setting<?>> byLowerName;
/**
* A list of all settings
*/
public final List<Setting<?>> allSettings;
public class Setting<T> {