11 lines
157 B
JavaScript
11 lines
157 B
JavaScript
|
this.gui = function()
|
||
|
{
|
||
|
GUI.image("sprites/message.png", [50,100]);
|
||
|
}
|
||
|
|
||
|
this.inputs = {};
|
||
|
this.inputs.space = function() {
|
||
|
game.start();
|
||
|
this.kill();
|
||
|
}
|