Sneaky tabs, trying to slip in there.

This commit is contained in:
Jikoo
2018-02-04 10:35:35 -05:00
parent 50c45b6616
commit a802769265
6 changed files with 44 additions and 44 deletions

View File

@@ -26,25 +26,25 @@ public interface ISpecialEnderChest {
*
* @return the Inventory
*/
Inventory getBukkitInventory();
Inventory getBukkitInventory();
/**
* Sets the Player associated with this ISpecialEnderChest online.
*
* @param player the Player coming online
*/
void setPlayerOnline(Player player);
void setPlayerOnline(Player player);
/**
* Sets the Player associated with this ISpecialEnderChest offline.
*/
void setPlayerOffline();
void setPlayerOffline();
/**
* Gets whether or not this ISpecialEnderChest is in use.
*
* @return true if the ISpecialEnderChest is in use
*/
boolean isInUse();
boolean isInUse();
}