ruby-avm-library/lib/avm/image.rb

13 lines
146 B
Ruby
Raw Normal View History

2011-03-07 17:39:47 +00:00
require 'avm/creator'
module AVM
class Image
attr_reader :creator
def initialize
@creator = AVM::Creator.new
end
end
end