Diff
Not logged in

Differences From Artifact [2332c804152f20b9]:

To Artifact [1dc5dff936083189]:


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