/// <summary>
		/// Initializes a new instance of the
		/// <see cref="Skahal.Infrastructure.Framework.SocialGamingNetwork.PlayerLoggedInEventArgs"/> class.
		/// </summary>
		/// <param name="player">Player.</param>
		public PlayerLoggedInEventArgs(SGNPlayer player)
		{
			Player = player;	
		}
		/// <summary>
		/// Initializes a new instance of the
		/// <see cref="Skahal.Infrastructure.Framework.SocialGamingNetwork.OpponentConnectedEventArgs"/> class.
		/// </summary>
		/// <param name="opponent">Opponent.</param>
		public OpponentConnectedEventArgs(SGNPlayer opponent)
		{
			Opponent = opponent;
		}