You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <summary>Provides a way to send several modules as one <see cref="ModPacket"/>. Useful for avoiding lots of net updates. Call <see cref="Module.Send(Node?, Node?, bool)"/> to send the data.</summary>
[Serializable]
public class AggregateModule : Module
{
/// <summary>All the modules to send.</summary>
public List<Module> Modules { get; set; } = new List<Module>();