class T90X::Move

Attributes

break[R]
name[R]
weight[R]

Public Class Methods

new(name, options = {}) click to toggle source
# File lib/t90x/move.rb, line 7
def initialize(name, options = {})
  @name = name
  @weight = options[:weight] || false
  @break = options[:break] || false
end

Public Instance Methods

break?() click to toggle source
# File lib/t90x/move.rb, line 17
def break?
  @break
end
weight?() click to toggle source
# File lib/t90x/move.rb, line 13
def weight?
  @weight
end