Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/items/interactions/InteractionTrophy.java
2020-11-15 22:43:32 +01:00

22 lines
616 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 InteractionTrophy extends InteractionDefault {
public InteractionTrophy(ResultSet set, Item baseItem) throws SQLException {
super(set, baseItem);
}
public InteractionTrophy(int id, int userId, Item item, String extradata, int limitedStack, int limitedSells) {
super(id, userId, item, extradata, limitedStack, limitedSells);
}
@Override
public boolean allowWiredResetState() {
return false;
}
}