fish-station/Content.Server/_Sunrise/Pibble/AttackOnInteractionFailComponent.cs
2025-02-11 04:28:02 +03:00

11 lines
356 B
C#

namespace Content.Server._Sunrise.Pibble;
[RegisterComponent]
public sealed partial class AttackOnInteractionFailComponent : Component
{
[DataField("attackMemoryLength"), ViewVariables(VVAccess.ReadWrite)]
public TimeSpan? AttackMemoryLength;
[DataField("attackMemories")]
public Dictionary<EntityUid, TimeSpan> AttackMemories = new();
}