lib/onsengame/object/base.rb in onsengame-0.0.2 vs lib/onsengame/object/base.rb in onsengame-0.0.3

- old
+ new

@@ -23,16 +23,8 @@ def update end def draw end - - def draw_rectangle(x1, y1, x2, y2, color, z_order) - @window.draw_quad(x1, y1, color, - x2, y1, color, - x2, y2, color, - x1, y2, color, - z_order) - end end end end