mirror of
https://github.com/Rogiel/l2jserver2
synced 2025-12-08 16:33:07 +00:00
First commit
Change-Id: I4d273faba7286288d2b9a214c87c39a76724d787
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package com.l2jserver.service.game.template;
|
||||
|
||||
import com.l2jserver.model.id.TemplateID;
|
||||
import com.l2jserver.model.template.AbstractTemplate;
|
||||
import com.l2jserver.service.Service;
|
||||
|
||||
public interface TemplateService extends Service {
|
||||
/**
|
||||
* Get the template assigned with <tt>id</tt>
|
||||
*
|
||||
* @param id
|
||||
* the template id
|
||||
* @return the template matching the id
|
||||
*/
|
||||
AbstractTemplate getTemplate(TemplateID id);
|
||||
|
||||
/**
|
||||
* Recompile the template with id <tt>id</tt>. This can be used to reload
|
||||
* the template.
|
||||
*
|
||||
* @param id
|
||||
* the template id
|
||||
*/
|
||||
void recompile(TemplateID id);
|
||||
}
|
||||
Reference in New Issue
Block a user