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
|
|
|
|
|
|
{
|
2021-03-10 14:48:29 +01:00
|
|
|
|
bool OnButtonPressed(GUIBoundKeyEventArgs args, IEntity? item);
|
|
|
|
|
|
void UpdateCooldown(ItemSlotButton? cooldownTexture, IEntity? entity);
|
|
|
|
|
|
bool SetItemSlot(ItemSlotButton button, IEntity? entity);
|
|
|
|
|
|
void HoverInSlot(ItemSlotButton button, IEntity? entity, bool fits);
|
2020-01-17 06:43:20 -08:00
|
|
|
|
}
|
|
|
|
|
|
}
|