-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
850a025
commit 7027fc4
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?php | ||
|
||
/* | ||
* ___ __ __ | ||
* |_ _|_ ____ _| \/ | ___ _ __ _ _ | ||
* | || '_ \ \ / / |\/| |/ _ \ '_ \| | | | | ||
* | || | | \ V /| | | | __/ | | | |_| | | ||
* |___|_| |_|\_/ |_| |_|\___|_| |_|\__,_| | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Lesser General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* @author Muqsit | ||
* @link http://github.com/Muqsit | ||
* | ||
*/ | ||
|
||
namespace libs\muqsit\invmenu; | ||
|
||
use libs\muqsit\invmenu\inventories\ChestInventory; | ||
use libs\muqsit\invmenu\inventories\DoubleChestInventory; | ||
use libs\muqsit\invmenu\inventories\HopperInventory; | ||
|
||
interface MenuIds{ | ||
|
||
// This interface exists for backwards compatibility. | ||
|
||
const TYPE_CHEST = ChestInventory::class; | ||
const TYPE_DOUBLE_CHEST = DoubleChestInventory::class; | ||
const TYPE_HOPPER = HopperInventory::class; | ||
} |