Skip to content

Commit

Permalink
move GUIElement as root class of gui common
Browse files Browse the repository at this point in the history
  • Loading branch information
HSGamer committed Feb 21, 2025
1 parent ebb7767 commit e61d245
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import me.hsgamer.hscore.bukkit.gui.holder.BukkitGUIHolder;
import me.hsgamer.hscore.bukkit.gui.holder.event.BukkitCloseEvent;
import me.hsgamer.hscore.bukkit.gui.holder.event.BukkitOpenEvent;
import me.hsgamer.hscore.minecraft.gui.common.element.GUIElement;
import me.hsgamer.hscore.minecraft.gui.common.GUIElement;
import org.bukkit.Bukkit;
import org.bukkit.event.Event;
import org.bukkit.event.EventPriority;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package me.hsgamer.hscore.minecraft.gui.common.element;
package me.hsgamer.hscore.minecraft.gui.common;

/**
* An element of the GUI
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package me.hsgamer.hscore.minecraft.gui.common.button;

import me.hsgamer.hscore.minecraft.gui.common.element.GUIElement;
import me.hsgamer.hscore.minecraft.gui.common.GUIElement;
import me.hsgamer.hscore.minecraft.gui.common.inventory.InventoryContext;
import me.hsgamer.hscore.minecraft.gui.common.item.ActionItem;
import org.jetbrains.annotations.NotNull;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package me.hsgamer.hscore.minecraft.gui.common.button;

import me.hsgamer.hscore.minecraft.gui.common.element.GUIElement;
import me.hsgamer.hscore.minecraft.gui.common.GUIElement;
import me.hsgamer.hscore.minecraft.gui.common.inventory.InventoryContext;
import me.hsgamer.hscore.minecraft.gui.common.item.ActionItem;
import org.jetbrains.annotations.NotNull;
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package me.hsgamer.hscore.minecraft.gui.holder;

import me.hsgamer.hscore.minecraft.gui.common.button.ButtonMap;
import me.hsgamer.hscore.minecraft.gui.common.element.GUIElement;
import me.hsgamer.hscore.minecraft.gui.common.GUIElement;
import me.hsgamer.hscore.minecraft.gui.common.event.ClickEvent;
import me.hsgamer.hscore.minecraft.gui.common.inventory.InventoryContext;
import me.hsgamer.hscore.minecraft.gui.common.item.ActionItem;
Expand Down

0 comments on commit e61d245

Please sign in to comment.