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

Method main

src/Graphwar/Graphwar.java:35–53  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

33 private GraphUI graphUI;
34
35 public static void main(String[] args)
36 {
37 handleArgs(args);
38
39 Graphwar graphwar = new Graphwar();
40
41 graphwar.init();
42
43 // This is this way because it was adapted from an applet
44 while(true)
45 {
46 try {
47 Thread.sleep(10000);
48 } catch (InterruptedException e) {
49 // TODO Auto-generated catch block
50 e.printStackTrace();
51 }
52 }
53 }
54
55 public static void handleArgs(String[] args)
56 {

Callers

nothing calls this directly

Calls 2

handleArgsMethod · 0.95
initMethod · 0.95

Tested by

no test coverage detected