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

25 lines
487 B
Java

package com.eu.habbo.habbohotel.items;
import com.eu.habbo.habbohotel.users.HabboItem;
public class ItemInteraction {
private final String name;
private final Class<? extends HabboItem> type;
public ItemInteraction(String name, Class<? extends HabboItem> type) {
this.name = name;
this.type = type;
}
public Class<? extends HabboItem> getType() {
return this.type;
}
public String getName() {
return this.name;
}
}