mirror of
https://github.com/Rogiel/l2jserver2
synced 2025-12-08 00:13:11 +00:00
12 lines
323 B
Java
12 lines
323 B
Java
package com.l2jserver.model.template.capability;
|
|
|
|
import com.l2jserver.model.world.capability.Attacker;
|
|
|
|
public interface Defendable extends TemplateCapability {
|
|
void defend(Attacker source,
|
|
com.l2jserver.model.world.capability.Attackable target);
|
|
|
|
public int getPhysicalDefense();
|
|
public int getMagicalDefense();
|
|
}
|