Files
crystall-punk-14/Content.Client/Interfaces/GameObjects/Components/Items/IHandsComponent.cs
Pieter-Jan Briers b0f212bad5 Verbs (#124)
Right click verbs work.
2018-11-21 20:58:11 +01:00

16 lines
399 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);
void AttackByInHand(string index);
}
}