diff options
Diffstat (limited to 'deploy_template/mygame/app/main.rb')
| -rw-r--r-- | deploy_template/mygame/app/main.rb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/deploy_template/mygame/app/main.rb b/deploy_template/mygame/app/main.rb index 5683cc2..0ebdc6b 100644 --- a/deploy_template/mygame/app/main.rb +++ b/deploy_template/mygame/app/main.rb @@ -1,5 +1,6 @@ def tick args - args.outputs.labels << [ 580, 500, 'Hello World!' ] - args.outputs.labels << [ 640, 460, 'Go to docs/docs.html and read it!', 5, 1 ] - args.outputs.sprites << [ 576, 310, 128, 101, 'dragonruby.png' ] + args.outputs.labels << [640, 500, 'Hello World!', 5, 1] + args.outputs.labels << [640, 460, 'Go to docs/docs.html and read it!', 5, 1] + args.outputs.labels << [640, 420, 'Join the Discord! http://discord.dragonruby.org', 5, 1] + args.outputs.sprites << [576, 280, 128, 101, 'dragonruby.png'] end |
