Advertisement
Guest User

Untitled

a guest
Dec 7th, 2011
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.45 KB | None | 0 0
  1. include Ruby
  2. load_assembly 'Microsoft.Xna.Framework'
  3. include Microsoft::Xna::Framework::Input
  4.  
  5. class Main
  6.     def initialize
  7.         @sprite = Sprite.new
  8.         @sprite.bitmap = Bitmap.new(32, 32)
  9.         @sprite.bitmap.drawRect(0, 0, 31, 31, Color.new(255, 0, 0))
  10.     end
  11.     def update
  12.         if Input.trigger(Keys.Space)
  13.             @sprite.bitmap.fillRect(1, 1, 30, 30, Color.new(0, 255, 0))
  14.         end
  15.     end
  16. end
  17.  
  18. $main = Main.new
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement