mirror of
https://github.com/Rogiel/l2jserver2
synced 2025-12-06 07:32:46 +00:00
20 lines
563 B
Java
20 lines
563 B
Java
package com.l2jserver.model.template.item;
|
|
|
|
import com.l2jserver.model.id.template.ItemTemplateID;
|
|
import com.l2jserver.model.template.ItemTemplate;
|
|
import com.l2jserver.model.template.capability.Consumable;
|
|
import com.l2jserver.model.world.Item;
|
|
|
|
/**
|
|
* Template for consumable {@link Item}
|
|
*
|
|
* @author <a href="http://www.rogiel.com">Rogiel</a>
|
|
*/
|
|
public abstract class ConsumableTemplate extends ItemTemplate implements
|
|
Consumable {
|
|
public ConsumableTemplate(ItemTemplateID id, String icon,
|
|
ItemMaterial material) {
|
|
super(id, icon, material);
|
|
}
|
|
}
|