ConnectN ======== The ConnectN Service provides helpers for building games like Connect-4 and Tic-Tac-Toe. .. toctree:: :maxdepth: 2 :titlesonly: :caption: RPC Categories RPCS ---- .. function:: ConnectN.isFullBoard() Check if every position on the current board is occupied. **Returns:** ``Boolean`` (`Boolean `__) - ``true`` if the board is full, otherwise ``false`` .. function:: ConnectN.isGameOver() Check if the current game is over. **Returns:** ``Boolean`` (`Boolean `__) - ``true`` if game over, otherwise ``false`` .. function:: ConnectN.newGame(row: Number?, column: Number?, numDotsToConnect: Number?) Create a new ConnectN game **Arguments:** - ``row: Number?`` (`Number `__) - The number of rows on the game board - ``column: Number?`` (`Number `__) - The number of columns on the game board - ``numDotsToConnect: Number?`` (`Number `__) - The number of connected tiles required to win .. function:: ConnectN.play(row: Integer, column: Integer) Play at the given row, column to occupy the location. **Arguments:** - ``row: Integer`` (`Integer `__) - The given row at which to move - ``column: Integer`` (`Integer `__) - The given column at which to move