mirror of
https://github.com/Rogiel/l2jserver2
synced 2025-12-06 07:32:46 +00:00
14 lines
333 B
Java
14 lines
333 B
Java
package com.l2jserver.model.template.capability;
|
|
|
|
import com.l2jserver.model.template.Template;
|
|
|
|
/**
|
|
* Defines an {@link Template template} {@link TemplateCapability capability}
|
|
* that can be used.
|
|
*
|
|
* @author <a href="http://www.rogiel.com">Rogiel</a>
|
|
*/
|
|
public interface Usable extends TemplateCapability {
|
|
void canUse();
|
|
}
|