fb818d7ab8
git-subtree-dir: Programming/ProgLab3 git-subtree-mainline:329aa90447git-subtree-split:da7c6aa397
19 lines
269 B
Java
19 lines
269 B
Java
package environment;
|
|
|
|
enum Ground {
|
|
DIRT(0.3),
|
|
GRASS(0.5),
|
|
ASPHALT(0.8),
|
|
SAND(0.2);
|
|
|
|
private final double comfort;
|
|
|
|
Ground(double comfort) {
|
|
this.comfort = comfort;
|
|
}
|
|
|
|
public double getComfort() {
|
|
return comfort;
|
|
}
|
|
}
|