1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-09 00:42:56 +00:00

TeleporterTemplate

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-25 00:54:21 -03:00
parent cc44946831
commit ad6a2e89d2
9129 changed files with 128 additions and 673228 deletions

View File

@@ -24,14 +24,14 @@ import com.l2jserver.model.template.Template;
*
* @author <a href="http://www.rogiel.com">Rogiel</a>
*/
public abstract class TemplateID<T extends Template<?>> extends ID<Integer> {
public abstract class TemplateID<T extends Template<?>, I> extends ID<I> {
/**
* Creates a new instance
*
* @param id
* the raw id
*/
public TemplateID(int id) {
public TemplateID(I id) {
super(id);
}