コード例 #1
0
ファイル: ClientHandler.java プロジェクト: oplosthee/qwirkle
 /**
  * sends a put move to the client
  *
  * @param move is a map with the points and blocks
  */
 public void sendMovePut(Map<Point, Block> move) {
   sendRaw(ProtocolFormatter.serverMovePut(move));
 }