class ElTwo

Public Class Methods

new(x, y) click to toggle source
Calls superclass method Player::new
# File lib/player.rb, line 65
def initialize(x, y)
  super(x, y)
  @color = Gosu::Color.argb(0xFF, 0xFF, 0xA5, 0x00)
  @data = [[1, 0, 0],
           [1, 1, 1]]
end