
com.freya02.botcommands.api.components.event.EntitySelectEvent Maven / Gradle / Ivy
package com.freya02.botcommands.api.components.event;
import com.freya02.botcommands.api.BContext;
import com.freya02.botcommands.internal.BContextImpl;
import net.dv8tion.jda.api.events.interaction.component.EntitySelectInteractionEvent;
public class EntitySelectEvent extends EntitySelectInteractionEvent {
private final BContext context;
public EntitySelectEvent(BContextImpl context, EntitySelectInteractionEvent event) {
super(event.getJDA(), event.getResponseNumber(), event.getInteraction());
this.context = context;
}
public BContext getContext() {
return context;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy