MCPcopy Create free account
hub / github.com/catabriga/graphwar / stopComputers

Method stopComputers

src/Graphwar/GameData.java:767–780  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

765 }
766
767 private void stopComputers()
768 {
769 ListIterator<Player> itr = players.listIterator();
770
771 while(itr.hasNext())
772 {
773 Player player = itr.next();
774
775 if(player instanceof ComputerPlayer)
776 {
777 ((ComputerPlayer) player).stopThinkFunction();
778 }
779 }
780 }
781
782 private void startGameMessage(String[] info) throws Exception
783 {

Callers 3

startGameMessageMethod · 0.95
finishGameMessageMethod · 0.95
stopGameMethod · 0.95

Calls 1

stopThinkFunctionMethod · 0.80

Tested by

no test coverage detected