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

20 lines
549 B
Java

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