Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/items/ItemInteraction.java
2018-07-08 21:32:00 +00:00

29 lines
499 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;
}
}