This repository has been archived on 2024-10-31. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
LibZontreck/src/main/java/dev/zontreck/libzontreck/events/GUIButtonClickedEvent.java

21 lines
519 B
Java

package dev.zontreck.libzontreck.events;
import net.minecraft.resources.ResourceLocation;
import net.minecraft.world.item.ItemStack;
import net.minecraftforge.eventbus.api.Event;
import java.util.UUID;
public class GUIButtonClickedEvent extends Event
{
public ResourceLocation id;
public ItemStack stack;
public UUID player;
public GUIButtonClickedEvent(ItemStack stack, ResourceLocation id, UUID player)
{
this.id = id;
this.stack = stack;
this.player = player;
}
}