Datasets:

ArXiv:
License:
Stack-Repo / data /train /CDZR0 /BattleShip /src /battleship /Events /ShipSelectorEvent.java
denisko's picture
cnanged dir structure and removed features file
3e77472
Raw
History Blame Contribute Delete
306 Bytes
//Csaba
package battleship.Events;
/**
*
* @author Csaba
*/
public interface ShipSelectorEvent {
void onSelectShip(int shipSize);
void onSelectDirection(boolean shipPlaceHorizontal);
void onRanOutOfShips();
void onClearBoard();
void onPlaceRandomShips();
void onDone();
}