mirror of
https://github.com/Rogiel/l2jserver2
synced 2025-12-08 08:23:11 +00:00
Change-Id: I0000000000000000000000000000000000000000
Change-Id: Idb54de2399013c159bda588be1ce065b8314af60 Change-Id: I8b913da4fe5139078b935b99e8e1aaa091480a75
This commit is contained in:
@@ -4,5 +4,5 @@ import com.l2jserver.model.world.capability.Caster;
|
||||
|
||||
public interface Castable extends TemplateCapability {
|
||||
void cast(Caster caster,
|
||||
com.l2jserver.model.world.capability.Castable target);
|
||||
com.l2jserver.model.world.capability.Castable... targets);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.l2jserver.model.template.capability;
|
||||
|
||||
import com.l2jserver.model.world.WorldObject;
|
||||
|
||||
/**
|
||||
* Defines an template that can be stacked (i.e. more then one item per slot in
|
||||
* the inventory)
|
||||
*
|
||||
* @author <a href="http://www.rogiel.com">Rogiel</a>
|
||||
*/
|
||||
public interface Stackable<T extends WorldObject> extends TemplateCapability {
|
||||
void stack(T... object);
|
||||
}
|
||||
Reference in New Issue
Block a user