Sha256: f502c9cffc5339c5397ae73d6b38794db08c71a15dfe7897ae475c8a3c676de7
Contents?: true
Size: 1.45 KB
Versions: 3
Compression:
Stored size: 1.45 KB
Contents
# encoding: UTF-8 # A player, participating in a game class Player # @!attribute [r] name # @return [String] the player's name attr_reader :name # @!attribute [r] color # @return [PlayerColor] the player's color attr_reader :color # @!attribute [rw] points # @return [Integer] the player's points attr_accessor :points # @!attribute [rw] velocity # @return [Integer] the player's current velocity attr_accessor :velocity # @!attribute [rw] coal # @return [Integer] the player's current coal supply attr_accessor :coal # @!attribute [rw] direction # @return [Direction] the player's current direction attr_accessor :direction # @!attribute [rw] x # @return [Integer] the player's current x-position attr_accessor :x # @!attribute [rw] y # @return [Integer] the player's current y-position attr_accessor :y # @!attribute [rw] movement # @return [Direction] the player's current movement points attr_accessor :movement # @!attribute [rw] passengers # @return [Integer] how many passengers the player's has picked up attr_accessor :passengers # Initializer # @param color [PlayerColor] the new player's color # @param name [String] the new player's name (for displaying) def initialize(color, name) @color = color @name = name @points = 0 @velocity = 1 @movement = 1 @coal = 6 @passengers = 0 @direction = Direction::RIGHT end def ==(other) color == other.color end end
Version data entries
3 entries across 3 versions & 1 rubygems