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
{{ message }}
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.
/// <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>();