Files
tbd-station-14/Content.Client/Interfaces/GameObjects/Components/Items/IHandsComponent.cs
2017-09-30 16:56:19 +02:00

15 lines
356 B
C#

using SS14.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; }
void SendChangeHand(string index);
}
}