20 lines
438 B
C#
20 lines
438 B
C#
using Invector.vItemManager;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Beyond
|
|
{
|
|
public interface IButtonItemBindController
|
|
{
|
|
public void BindPanelToItemSlot(int index);
|
|
|
|
public int GetEquipSlotsCount();
|
|
|
|
public void SetEquipSlot();
|
|
|
|
public ItemPanelController GetCurrentItemPanel();
|
|
|
|
public List<ItemPanelController> GetItemPanels();
|
|
|
|
public bEquipArea GetEquipArea();
|
|
}
|
|
} |