Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,7 @@ public void setChance(float chance) {
public class Snow {
private String time;
private float ammount;
private float chance;

/*
* Hour interval
Expand All @@ -355,6 +356,17 @@ public void setAmmount(float ammount) {
this.ammount = ammount;
}

/**
* Chance of snow
* @return float
* */
public float getChance() {
return chance;
}

public void setChance(float chance) {
this.chance = chance;
}

}

Expand Down