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

Method run

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

Source from the content-addressed store, hash-verified

1425 }
1426
1427 public void run()
1428 {
1429 while(this.gameState != Constants.NONE)
1430 {
1431 if(this.gameState == Constants.GAME)
1432 {
1433 this.updateDrawingStuff();
1434 }
1435
1436 try
1437 {
1438 Thread.sleep(2000);
1439 }
1440 catch (InterruptedException e)
1441 {
1442 e.printStackTrace();
1443 }
1444 }
1445 }
1446
1447}
1448

Callers

nothing calls this directly

Calls 1

updateDrawingStuffMethod · 0.95

Tested by

no test coverage detected