aboutsummaryrefslogtreecommitdiff
path: root/level.rb
blob: 4cb598634a6ab2b9f5454e2a25e155e51a309c36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class Level
  def initialize(&block)
    @interfaces = []
    @description = ""
    @count = 0
    @clicks = 3

    self.instance_eval(&block)
  end

  attr_reader :description, :clicks, :interfaces
end