cn.nukkit.inventory.CraftingManager Java Examples
The following examples show how to use
cn.nukkit.inventory.CraftingManager.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: CraftingTransaction.java From Jupiter with GNU General Public License v3.0 | 4 votes |
public CraftingManager getRecipe() { return this.recipe; }
Example #2
Source File: Server.java From Nukkit with GNU General Public License v3.0 | 4 votes |
public void sendRecipeList(Player player) { player.dataPacket(CraftingManager.packet); }
Example #3
Source File: Server.java From Nukkit with GNU General Public License v3.0 | 4 votes |
public CraftingManager getCraftingManager() { return craftingManager; }
Example #4
Source File: Server.java From Nukkit with GNU General Public License v3.0 | 4 votes |
public void sendRecipeList(Player player) { player.dataPacket(CraftingManager.packet); }
Example #5
Source File: Server.java From Nukkit with GNU General Public License v3.0 | 4 votes |
public CraftingManager getCraftingManager() { return craftingManager; }
Example #6
Source File: Server.java From Jupiter with GNU General Public License v3.0 | 2 votes |
/** * クラフティングマネージャを取得します。 * @return CraftingManager */ public CraftingManager getCraftingManager() { return craftingManager; }