mirror of
https://github.com/CitizensDev/Citizens2.git
synced 2025-02-20 14:21:20 +01:00
9 lines
188 B
Java
9 lines
188 B
Java
|
package net.citizensnpcs.editor;
|
||
|
|
||
|
import net.citizensnpcs.api.npc.NPC;
|
||
|
|
||
|
import org.bukkit.entity.Player;
|
||
|
|
||
|
public interface Equipper {
|
||
|
public void equip(Player equipper, NPC toEquip);
|
||
|
}
|