7 lines
218 B
Java
7 lines
218 B
Java
package net.minecraft.world.entity;
|
|
|
|
import net.minecraft.world.entity.ai.village.ReputationEventType;
|
|
|
|
public interface ReputationEventHandler {
|
|
void onReputationEventFrom(ReputationEventType type, Entity target);
|
|
}
|