Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
ItzFabb-uwu authored Jan 20, 2021
1 parent 850a025 commit 7027fc4
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions src/libs/muqsit/invmenu/MenuIds.php
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;
}

0 comments on commit 7027fc4

Please sign in to comment.