Files
crystall-punk-14/Content.Client/Interfaces/GameObjects/Components/Items/IHandsComponent.cs

15 lines
356 B
C#
Raw Normal View History

2017-09-30 16:56:19 +02:00
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);
2017-09-30 16:56:19 +02:00
string ActiveIndex { get; }
void SendChangeHand(string index);
}
}