Datasets:

ArXiv:
License:
denisko's picture
cnanged dir structure and removed features file
3e77472
raw
history blame contribute delete
450 Bytes
package battleship.DataPackage;
public abstract class Data {
protected int clientID;
protected int recipientID;
Data(int clientID) {
this.clientID = clientID;
this.recipientID = -1;
}
public int getClientID() {
return clientID;
}
public int getRecipientID() {
return recipientID;
}
public void setRecipientID(int recipientID) {
this.recipientID = recipientID;
}
}