Package org.gojul.fourinaline.model

Examples of org.gojul.fourinaline.model.GamePlayer


  {
    Iterator<GamePlayer> it = currentPlayers.iterator();
   
    while (it.hasNext())
    {
      GamePlayer player = it.next();
     
      if (player.getPlayerMark().equals(mark))
        return player.getName();
    }
   
    return "";
  }
View Full Code Here

TOP

Related Classes of org.gojul.fourinaline.model.GamePlayer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.