delete old statistic gui

Took 8 seconds
This commit is contained in:
Kiran Hart 2022-10-27 22:08:35 -04:00
parent 4e460c485a
commit 47841410ce
No known key found for this signature in database
GPG Key ID: 5F36C7BC79D3EBC3

View File

@ -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() {
}
}