minecraft-src/net/minecraft/world/entity/ReputationEventHandler.java
2025-07-04 01:41:11 +03:00

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);
}