project_files/Android-build/SDL-android-project/src/org/hedgewars/hedgeroid/Datastructures/Hog.java
Hedgeroid: Final sprint to the deadline
- Changed local game setup to use the new fragments from the netroom
- Pulled team editing into the main activity menu / action bar
- Cleanups, renames, anything to make the code look better ;)
package org.hedgewars.hedgeroid.Datastructures;
public final class Hog {
public final String name, hat;
public final int level;
public Hog(String name, String hat, int level) {
this.name = name;
this.hat = hat;
this.level = level;
}
@Override
public String toString() {
return "Hog [name=" + name + ", hat=" + hat + ", level=" + level + "]";
}
}