1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-09 08:52:51 +00:00

Change-Id: Ia0d07d075e9feeb872124348948d8664364d1c8a

This commit is contained in:
rogiel
2011-04-30 11:18:01 -03:00
parent d76e80f9a0
commit 9a6c0233e9
46 changed files with 640 additions and 430 deletions

View File

@@ -1,7 +1,7 @@
package com.l2jserver.service.game.template;
import com.l2jserver.model.id.TemplateID;
import com.l2jserver.model.template.AbstractTemplate;
import com.l2jserver.model.template.Template;
import com.l2jserver.service.Service;
public interface TemplateService extends Service {
@@ -12,14 +12,10 @@ public interface TemplateService extends Service {
* the template id
* @return the template matching the id
*/
AbstractTemplate getTemplate(TemplateID id);
Template getTemplate(TemplateID id);
/**
* Recompile the template with id <tt>id</tt>. This can be used to reload
* the template.
*
* @param id
* the template id
* Reload the template list.
*/
void recompile(TemplateID id);
void reload();
}