Configadd #82
@@ -2,4 +2,8 @@ public class Config {
|
||||
/*Class that contains all configurable variables for quick'n'easy balance changes
|
||||
|
|
||||
To use, simply create a class in here, give it some variables, import it into your
|
||||
file. Call on it using Config.<yourclass>.<yourvariable> and voila!*/
|
||||
|
||||
public class dropRates {
|
||||
|
This is horrible naming conventions and classes should be This is horrible naming conventions and classes should be `static`. You also do not need inner classes for everything. Static fields should be enough. Please also provide information about de/serialization and configuration screens.
|
||||
public static final double dropRate = 1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user
Please word more carefully and format the comment to either use
//or have/*and*/on a separate line.