
uno.cod.battle.client.model.PositionInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
The Java client for the Coduno battle
The newest version!
package uno.cod.battle.client.model;
/**
* Created by vbalan on 10/28/2015.
*/
public class PositionInfo {
private Integer left, right, up, down;
public Integer getLeft() {
return left;
}
public void setLeft(Integer left) {
this.left = left;
}
public Integer getRight() {
return right;
}
public void setRight(Integer right) {
this.right = right;
}
public Integer getUp() {
return up;
}
public void setUp(Integer up) {
this.up = up;
}
public Integer getDown() {
return down;
}
public void setDown(Integer down) {
this.down = down;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy