mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
17 lines
400 B
C#
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);
|
|
}
|
|
} |