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]
|
2023-08-06 08:08:07 +02:00
|
|
|
public record struct SpreadGroupUpdateRate(string Name, int UpdatesPerSecond = 16);
|