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