Back to project page MatchHistory-League.
The source code is released under:
MIT License
If you think the Android project MatchHistory-League listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.lando.matchhistory.Models; // w w w . j a v a2 s. com import io.realm.RealmObject; public class CreepsPerMinDeltas extends RealmObject{ private float zeroToTen; private float tenToTwenty; private float twentyToThirty; public float getZeroToTen() { return zeroToTen; } public void setZeroToTen(float zeroToTen) { this.zeroToTen = zeroToTen; } public float getTenToTwenty() { return tenToTwenty; } public void setTenToTwenty(float tenToTwenty) { this.tenToTwenty = tenToTwenty; } public float getTwentyToThirty() { return twentyToThirty; } public void setTwentyToThirty(float twentyToThirty) { this.twentyToThirty = twentyToThirty; } }