class Triangle

Public Class Methods

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