Files
RobustToolbox/SS14.Client.Interfaces/GOC/IPlayerAction.cs
2015-01-23 01:15:33 -05:00

17 lines
400 B
C#

using SS14.Shared;
using System;
namespace SS14.Client.Interfaces.GOC
{
public interface IPlayerAction
{
PlayerActionTargetType TargetType { get; }
string Icon { get; }
string Name { get; }
string Description { get; }
DateTime CooldownExpires { get; set; }
uint Uid { get; }
void Activate();
void Use(object target);
}
}