mirror of
https://github.com/Rogiel/l2jserver2
synced 2025-12-06 07:32:46 +00:00
17 lines
407 B
Java
17 lines
407 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.world.Item;
|
|
|
|
/**
|
|
* Template for rune {@link Item}
|
|
*
|
|
* @author <a href="http://www.rogiel.com">Rogiel</a>
|
|
*/
|
|
public abstract class RuneTemplate extends ItemTemplate {
|
|
public RuneTemplate(ItemTemplateID id) {
|
|
super(id);
|
|
}
|
|
}
|