Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/items/interactions/games/tag/icetag/InteractionIceTagField.java
2018-07-06 13:30:00 +00:00

21 lines
739 B
Java

package com.eu.habbo.habbohotel.items.interactions.games.tag.icetag;
import com.eu.habbo.habbohotel.games.tag.IceTagGame;
import com.eu.habbo.habbohotel.items.Item;
import com.eu.habbo.habbohotel.items.interactions.games.tag.InteractionTagField;
import java.sql.ResultSet;
import java.sql.SQLException;
public class InteractionIceTagField extends InteractionTagField
{
public InteractionIceTagField(ResultSet set, Item baseItem) throws SQLException
{
super(set, baseItem, IceTagGame.class);
}
public InteractionIceTagField(int id, int userId, Item item, String extradata, int limitedStack, int limitedSells)
{
super(id, userId, item, extradata, limitedStack, limitedSells, IceTagGame.class);
}
}