26 lines
716 B
C#
26 lines
716 B
C#
// SPDX-FileCopyrightText: 2025 Aidenkrz <aiden@djkraz.com>
|
|
// SPDX-FileCopyrightText: 2025 GoobBot <uristmchands@proton.me>
|
|
// SPDX-FileCopyrightText: 2025 Roudenn <romabond091@gmail.com>
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared._Goobstation.Fishing.Components;
|
|
|
|
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
|
public sealed partial class FishingLureComponent : Component
|
|
{
|
|
[DataField, AutoNetworkedField]
|
|
public EntityUid FishingRod;
|
|
|
|
[DataField, AutoNetworkedField]
|
|
public EntityUid? AttachedEntity;
|
|
|
|
[ViewVariables]
|
|
public TimeSpan NextUpdate;
|
|
|
|
[DataField]
|
|
public float UpdateInterval = 1f;
|
|
}
|