Creates a new GUI from an inventory @param inventory The inventory to create a GUI from
(Inventory inventory)
| 62 | * @param inventory The inventory to create a GUI from |
| 63 | */ |
| 64 | public InventoryGUI(Inventory inventory) { |
| 65 | this.inventory = inventory; |
| 66 | Bukkit.getPluginManager().registerEvents(this, RedLib.getInstance()); |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * Creates a new GUI, instantiating a new inventory with the given size and name |
nothing calls this directly
no test coverage detected