You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 rivejä
378 B

  1. button = Class{}
  2. function button:init(x, y, width, height, color)
  3. self.x = x
  4. self.y = y
  5. self.w = width
  6. self.h = height
  7. self.color = color
  8. end
  9. function button:update(dt)
  10. end
  11. function button:render()
  12. love.graphics.setColor(unpack(color))
  13. love.graphics.rectangle("fill", self.x,self.y, self.w, self.h)
  14. love.graphics.setColor(0, 0, 0, 255)
  15. end