Files
tbd-station-14/Content.Client/Interfaces/GameObjects/Components/Items/IHandsComponent.cs
2019-04-15 21:11:38 -06:00

17 lines
437 B
C#

using Robust.Shared.Interfaces.GameObjects;
namespace Content.Client.Interfaces.GameObjects
{
// HYPER SIMPLE HANDS API CLIENT SIDE.
// To allow for showing the HUD, mostly.
public interface IHandsComponent
{
IEntity GetEntity(string index);
string ActiveIndex { get; }
IEntity ActiveHand { get; }
void SendChangeHand(string index);
void AttackByInHand(string index);
}
}