public DragType getDrag() {
return click;
}
java类org.bukkit.event.inventory.DragType的实例源码
ComponentDragEvent.java 文件源码
项目:InventoryAPI
阅读 28
收藏 0
点赞 0
评论 0
PoreInventoryDragEvent.java 文件源码
项目:Pore
阅读 28
收藏 0
点赞 0
评论 0
@Override
public DragType getType() {
throw new NotImplementedException("TODO");
}
InventoryDragEvent.java 文件源码
项目:BedrockAPI
阅读 28
收藏 0
点赞 0
评论 0
public DragType getType() {
return null;
}
ComponentDragEvent.java 文件源码
项目:InventoryAPI
阅读 31
收藏 0
点赞 0
评论 0
/**
*
* @param gui
* @param component
* @param item
* @param player
* @param click
*/
public ComponentDragEvent( GUIContainer gui, GUIComponent component, Map<Integer,ItemStack> item, HumanEntity player, DragType click ) {
this.gui = gui;
this.component = component;
this.items = item;
this.player = player;
this.click = click;
}