package com.hypixel.hytale.server.npc.components.messaging; import com.hypixel.hytale.component.Component; import com.hypixel.hytale.component.ComponentType; import com.hypixel.hytale.server.core.universe.world.storage.EntityStore; import com.hypixel.hytale.server.npc.NPCPlugin; import com.hypixel.hytale.server.npc.blackboard.view.event.EventNotification; import com.hypixel.hytale.server.npc.blackboard.view.event.block.BlockEventType; import javax.annotation.Nonnull; public class NPCBlockEventSupport extends EventSupport implements Component { public static ComponentType getComponentType() { return NPCPlugin.get().getNpcBlockEventSupportComponentType(); } @Nonnull @Override public Component clone() { NPCBlockEventSupport support = new NPCBlockEventSupport(); this.cloneTo(support); return support; } }