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