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