Delta-v/Content.Shared/_RMC14/Effect/EffectAlphaAnimationCompone...

15 lines
414 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared._RMC14.Effect;
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
[Access(typeof(SharedRMCEffectSystem))]
public sealed partial class EffectAlphaAnimationComponent : Component
{
[DataField, AutoNetworkedField]
public TimeSpan? SpawnedAt;
[DataField, AutoNetworkedField]
public TimeSpan Delay = TimeSpan.FromSeconds(1);
}