NetworkMachine.cs 347 B

12345678910111213
  1. namespace Microsoft.Xna.Framework.Net
  2. {
  3. /// <summary>
  4. /// Represents a machine in a network session.
  5. /// </summary>
  6. public class NetworkMachine
  7. {
  8. /// <summary>
  9. /// Gets the gamers on this machine.
  10. /// </summary>
  11. public GamerCollection Gamers { get; } = new GamerCollection(new List<NetworkGamer>());
  12. }
  13. }