module Rhythmmml::Figure::Base

Public Class Methods

new(window, options={}) click to toggle source
# File lib/rhythmmml/figure.rb, line 6
def initialize(window, options={})
  @window = window
  @color = options[:color] || Gosu::Color::WHITE
  @z_order = options[:z_order] || ZOrder::FIGURE
end