22 lines
449 B
C#
22 lines
449 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared._CP14.Fishing;
|
|
|
|
/// <summary>
|
|
/// Key for CP14FishingBoundUserInterface
|
|
/// </summary>
|
|
[Serializable, NetSerializable]
|
|
public enum CP14FishingUiKey : byte
|
|
{
|
|
Key,
|
|
}
|
|
|
|
/// <summary>
|
|
/// Event for sending reeling key status
|
|
/// </summary>
|
|
[Serializable, NetSerializable]
|
|
public sealed class CP14FishingReelKeyMessage(bool reeling) : EntityEventArgs
|
|
{
|
|
public bool Reeling = reeling;
|
|
}
|