Diff
Not logged in

Differences From Artifact [2332c804152f20b9]:

To Artifact [1dc5dff936083189]:


108 this.text = .text("Score: ", g.score, " Air: ", g.hp, " Tide: ", 108 this.text = .text("Score: ", g.score, " Air: ", g.hp, " Tide: ", 109 } 109 } 110 } 110 } 111 111 112 void main(string[] args) 112 void main(string[] args) 113 { 113 { 114 auto g = Game.load(File(args[1])); 114 auto g = Game.load(File(args[1])); 115 g.set_output(new StdOutput); | 115 g.set_output(new GuardedOutput(g)); 116 auto myForm = new GUI(g); 116 auto myForm = new GUI(g); 117 Application.run(myForm); 117 Application.run(myForm); 118 } 118 }