class Sea

Sea class, can raise plains, can't be built on

Public Class Methods

new(x, y) click to toggle source
Calls superclass method Tile::new
# File lib/demigodGame/Tile.rb, line 50
def initialize(x, y)
  super(x, y)
  @options = [:p]
  @type = '-'
end