Skip to content

Instantly share code, notes, and snippets.

@aoitaku
Last active August 29, 2015 14:07
Show Gist options
  • Save aoitaku/9a9096ca861f178cef15 to your computer and use it in GitHub Desktop.
Save aoitaku/9a9096ca861f178cef15 to your computer and use it in GitHub Desktop.
dxruby_platformer_1st
require 'dxruby'
image = Image.load('player.png')
x = 100
y = 100
Window.loop do
x += Input.x
y += Input.y
Window.draw(x, y, player)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment