2022-05-27 02:41:18 -05:00
|
|
|
|
namespace Content.Server.Pointing.Components;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Causes pointing arrows to go mode and murder this entity.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
|
public sealed partial class PointingArrowAngeringComponent : Component
|
2022-05-27 02:41:18 -05:00
|
|
|
|
{
|
|
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
|
|
|
|
[DataField("remainingAnger")]
|
|
|
|
|
|
public int RemainingAnger = 5;
|
|
|
|
|
|
}
|