Commits
Miles Holder authored 71714f0c114
1 1 | package org.bukkit.inventory; |
2 2 | |
3 3 | import org.bukkit.entity.HumanEntity; |
4 4 | import org.bukkit.event.inventory.InventoryType; |
5 5 | import org.jetbrains.annotations.NotNull; |
6 6 | import org.jetbrains.annotations.Nullable; |
7 7 | |
8 8 | /** |
9 9 | * Represents a view linking two inventories and a single player (whose |
10 10 | * inventory may or may not be one of the two). |
11 - | * <p> |
12 - | * Note: If you implement this interface but fail to satisfy the expected |
13 - | * contracts of certain methods, there's no guarantee that the game will work |
14 - | * as it should. |
15 11 | */ |
16 12 | public interface InventoryView { |
17 13 | public static final int OUTSIDE = -999; |
18 14 | /** |
19 15 | * Represents various extra properties of certain inventory windows. |
20 16 | */ |
21 17 | public enum Property { |
22 18 | /** |
23 19 | * The progress of the down-pointing arrow in a brewing inventory. |
24 20 | */ |