package com.lucasdnd.ags.gameplay.market;
import org.newdawn.slick.SpriteSheet;
/**
* This is the market representation of a Table. Each console available to purchase in the game will have its own
* instance of this class.
* @author tulio
*
*/
public class MarketTable extends MarketAsset {
protected int id; // The identifier
/**
* Creates a Console that will become available for the player to buy.
* @param namer
* @param generation
* @param price
* @param releaseDate
*/
public MarketTable(int id, SpriteSheet spriteSheet, String name, int price, long releaseDate) {
// Super Constructor for basic attributes
super(id, spriteSheet, name, price, releaseDate, 3, 2, new int[]{0, 1}, new int[]{2, 2}, 1);
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
}