Files
crystall-punk-14/Content.Server/Spreader/SpreadGroupUpdateRate.cs

8 lines
260 B
C#
Raw Normal View History

2023-04-10 15:37:03 +10:00
namespace Content.Server.Spreader;
/// <summary>
/// Raised every tick to determine how many updates a particular spreading node group is allowed.
/// </summary>
[ByRefEvent]
public record struct SpreadGroupUpdateRate(string Name, int UpdatesPerSecond = 16);