Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/items/interactions/games/InteractionGameTeamItem.java
2019-05-26 21:15:26 +03:00

25 lines
830 B
Java

package com.eu.habbo.habbohotel.items.interactions.games;
import com.eu.habbo.habbohotel.games.GameTeamColors;
import com.eu.habbo.habbohotel.items.Item;
import com.eu.habbo.habbohotel.users.HabboItem;
import java.sql.ResultSet;
import java.sql.SQLException;
public abstract class InteractionGameTeamItem extends HabboItem {
public final GameTeamColors teamColor;
protected InteractionGameTeamItem(ResultSet set, Item baseItem, GameTeamColors teamColor) throws SQLException {
super(set, baseItem);
this.teamColor = teamColor;
}
protected InteractionGameTeamItem(int id, int userId, Item item, String extradata, int limitedStack, int limitedSells, GameTeamColors teamColor) {
super(id, userId, item, extradata, limitedStack, limitedSells);
this.teamColor = teamColor;
}
}