Class: RoadToRubykaigi::Tile

Inherits:
Object
  • Object
show all
Defined in:
lib/road_to_rubykaigi/map.rb

Constant Summary collapse

MASK_CHAR =
"#"

Instance Method Summary collapse

Instance Method Details

#characterObject



91
92
93
# File 'lib/road_to_rubykaigi/map.rb', line 91

def character
  @symbol
end

#passable?Boolean

Returns:

  • (Boolean)


95
96
97
# File 'lib/road_to_rubykaigi/map.rb', line 95

def passable?
  @mask != MASK_CHAR
end