mirror of
https://github.com/kiranhart/Auction-House.git
synced 2025-02-26 21:21:21 +01:00
delete old statistic gui
Took 8 seconds
This commit is contained in:
parent
4e460c485a
commit
47841410ce
@ -1,31 +0,0 @@
|
||||
package ca.tweetzy.auctionhouse.guis;
|
||||
|
||||
import ca.tweetzy.auctionhouse.settings.Settings;
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
/**
|
||||
* The current file has been created by Kiran Hart
|
||||
* Date Created: September 01 2021
|
||||
* Time Created: 2:57 p.m.
|
||||
* Usage of any code found within this class is prohibited unless given explicit permission otherwise
|
||||
*/
|
||||
public final class GUIStats extends AbstractPlaceholderGui {
|
||||
|
||||
private final Player player;
|
||||
|
||||
public GUIStats(final Player player) {
|
||||
super(player);
|
||||
this.player = player;
|
||||
setTitle(Settings.GUI_STATS_VIEW_SELECT_TITLE.getString());
|
||||
setDefaultItem(Settings.GUI_STATS_VIEW_SELECT_BG_ITEM.getMaterial().parseItem());
|
||||
setUseLockedCells(true);
|
||||
setAcceptsItems(false);
|
||||
setAllowDrops(false);
|
||||
setRows(3);
|
||||
draw();
|
||||
}
|
||||
|
||||
private void draw() {
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user