Co-authored-by: rhailrake <splatt.pr@gmail.com> Co-authored-by: haiwwkes <49613070+rhailrake@users.noreply.github.com>
13 lines
425 B
C#
13 lines
425 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared._Sunrise.InteractionsPanel.Data.Components;
|
|
|
|
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
|
public sealed partial class InteractionsComponent : Component
|
|
{
|
|
[ViewVariables, AutoNetworkedField]
|
|
public EntityUid? CurrentTarget;
|
|
|
|
[ViewVariables, AutoNetworkedField]
|
|
public Dictionary<string, TimeSpan> InteractionCooldowns = new();
|
|
}
|