fish-station/Content.Shared/_Sunrise/DamageOverlay/DamageOverlayOptionEvent.cs
ThereDrD d07cbcda6e
Красивые циферки урона (#993)
* damage overlay refactor: new visuals and ignored damage types feature

* remove unused popup types

* add horizontal direction movement

* fix default popup type

* fix fix

* fix fix fix

* add damage overlay to structures

* comments + better implementation

* add ui dropdown option

* better values

* fix missing disabled sessions check

* asdasdadasd new commit on my pr

* ЧЕ БЛЯДЬ СЛОЖНО ДА

* ы

---------

Co-authored-by: Vigers Ray <vigersray@gmail.com>
2025-01-05 14:51:20 +03:00

11 lines
401 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared._Sunrise.DamageOverlay;
[Serializable, NetSerializable]
public sealed class DamageOverlayOptionEvent(bool enabled, bool selfEnabled, bool structuresEnabled) : EntityEventArgs
{
public bool Enabled { get; } = enabled;
public bool SelfEnabled { get; } = selfEnabled;
public bool StructuresEnabled { get; } = structuresEnabled;
}