fish-station/Content.Shared/_Sunrise/InteractionsPanel/Data/Components/InteractionsComponent.cs
SplikZerys 12c008f0f5
INTERACTION PANEL (#2551)
Co-authored-by: rhailrake <splatt.pr@gmail.com>
Co-authored-by: haiwwkes <49613070+rhailrake@users.noreply.github.com>
2025-07-13 16:48:32 -04:00

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();
}