class Player

A 'Player' is the human-controlled Character in the game TODO: Track playing time

Public Class Methods

new(name="", initial_level=1, initial_location=3001, description="You're...you!", keywords="self") click to toggle source
Calls superclass method Character::new
# File lib/skirmish/character.rb, line 66
def initialize(name="", initial_level=1, initial_location=3001, description="You're...you!", keywords="self")
  super(name, initial_level, initial_location, description, keywords)
  @quest = nil
end