1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-09 17:02:53 +00:00
Files
l2jserver2/src/main/java/com/l2jserver/model/template/capability/Attackable.java

13 lines
307 B
Java

package com.l2jserver.model.template.capability;
import com.l2jserver.model.world.capability.Attacker;
public interface Attackable extends TemplateCapability {
void attack(Attacker source,
com.l2jserver.model.world.capability.Attackable target);
int getPhysicalDamage();
int getMagicalDamage();
}