blob: 1c2a95c46d5d38dc81cb9df71c2a6d4877cbfbd2 [file] [log] [blame] [raw]
package com.legacy.aether.events;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraftforge.fml.common.eventhandler.Event;
public class DialogueClickedEvent extends Event
{
private EntityPlayer player;
private String dialogueName;
private int dialogueId;
public DialogueClickedEvent(EntityPlayer player, String dialogueName, int dialogueId)
{
this.player = player;
this.dialogueName = dialogueName;
this.dialogueId = dialogueId;
}
public EntityPlayer getPlayer()
{
return this.player;
}
public String getDialogueName()
{
return this.dialogueName;
}
public int getDialogueId()
{
return this.dialogueId;
}
}