1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-11 17:52:52 +00:00

Item template structure

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-14 20:11:42 -03:00
parent e886165b89
commit fe41dbdc6f
59 changed files with 1400 additions and 85 deletions

View File

@@ -0,0 +1,15 @@
package com.l2jserver.model.template.item;
import com.l2jserver.model.id.template.ItemTemplateID;
import com.l2jserver.model.world.Item;
/**
* Template for Race Ticket {@link Item}
*
* @author <a href="http://www.rogiel.com">Rogiel</a>
*/
public abstract class RaceTicketTemplate extends TicketTemplate {
public RaceTicketTemplate(ItemTemplateID id) {
super(id);
}
}