2020-08-13 14:40:27 +02:00
|
|
|
|
using Robust.Client.UserInterface;
|
2021-02-11 01:13:03 -08:00
|
|
|
|
using Robust.Shared.GameObjects;
|
2020-01-17 06:43:20 -08:00
|
|
|
|
|
|
|
|
|
|
namespace Content.Client.UserInterface
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IItemSlotManager
|
|
|
|
|
|
{
|
|
|
|
|
|
bool OnButtonPressed(GUIBoundKeyEventArgs args, IEntity item);
|
|
|
|
|
|
void UpdateCooldown(ItemSlotButton cooldownTexture, IEntity entity);
|
2020-01-17 18:41:47 -08:00
|
|
|
|
bool SetItemSlot(ItemSlotButton button, IEntity entity);
|
2020-07-26 07:25:38 -05:00
|
|
|
|
void HoverInSlot(ItemSlotButton button, IEntity entity, bool fits);
|
2020-01-17 06:43:20 -08:00
|
|
|
|
}
|
|
|
|
|
|
}
|