class NewEggTopGames::Game

Attributes

console[RW]
info_array[RW]
price[RW]
title[RW]

Public Class Methods

new(title, price, info_array, console) click to toggle source
# File lib/newegg_top_games/game.rb, line 4
def initialize(title, price, info_array, console)
        @title = title
        @price = price
        @info_array = info_array
        @console = console
end