namespace Microsoft.Xna.Framework.Net { /// /// Represents a machine in a network session. /// public class NetworkMachine { /// /// Gets the gamers on this machine. /// public GamerCollection Gamers { get; } = new GamerCollection(new List()); } }