Datasets:

ArXiv:
License:
denisko's picture
cnanged dir structure and removed features file
3e77472
raw
history blame contribute delete
379 Bytes
//Csaba
package battleship.DataPackage;
/**
*
* @author Csaba
*/
public class ShotData extends Data {
int i;
int j;
public ShotData(int clientID, int i, int j) {
super(clientID);
this.i = i;
this.j = j;
}
public int getI() {
return i;
}
public int getJ() {
return j;
}
}