Datasets:
ArXiv:
License:
//Csaba | |
package battleship.Logic; | |
/** | |
* | |
* @author Csaba | |
*/ | |
public enum CellStatus { | |
Empty, | |
EmptyHit, | |
NearShip, | |
Ship, | |
ShipHit, | |
ShipSunk | |
} | |