mirror of
https://github.com/songoda/EpicHeads.git
synced 2024-11-13 06:06:36 +01:00
83a77b3578
Replaced localization system with mine.
13 lines
300 B
Java
13 lines
300 B
Java
package com.songoda.epicheads.oldmenu;
|
|
|
|
import org.bukkit.event.inventory.InventoryClickEvent;
|
|
import org.bukkit.inventory.InventoryHolder;
|
|
|
|
public interface ClickInventory extends InventoryHolder {
|
|
|
|
public void onClick(InventoryClickEvent e);
|
|
|
|
public InventoryType getType();
|
|
|
|
}
|