// 
// Decompiled by Procyon v0.6.0
// 

package com.hypixel.hytale.server.npc.components.messaging;

import javax.annotation.Nonnull;
import com.hypixel.hytale.server.npc.blackboard.view.event.EntityEventNotification;
import com.hypixel.hytale.server.npc.blackboard.view.event.entity.EntityEventType;
import com.hypixel.hytale.server.npc.NPCPlugin;
import com.hypixel.hytale.component.ComponentType;
import com.hypixel.hytale.server.core.universe.world.storage.EntityStore;
import com.hypixel.hytale.component.Component;

public class NPCEntityEventSupport extends EntityEventSupport implements Component<EntityStore>
{
    public static ComponentType<EntityStore, NPCEntityEventSupport> getComponentType() {
        return NPCPlugin.get().getNpcEntityEventSupportComponentType();
    }
    
    @Nonnull
    @Override
    public Component<EntityStore> clone() {
        final NPCEntityEventSupport support = new NPCEntityEventSupport();
        this.cloneTo(support);
        return support;
    }
}
