コード例 #1
0
ファイル: MyServer.java プロジェクト: RoboCup-MSL/RefBox2015
 protected void addClient(Client client) {
   if (clientCount == clients.length) {
     clients = (Client[]) PApplet.expand(clients);
   }
   clients[clientCount++] = client;
 }