fCraft.Server.RaiseSessionConnectedEvent C# (CSharp) Method

RaiseSessionConnectedEvent() static private method

static private RaiseSessionConnectedEvent ( [ player ) : void
player [
return void
        internal static void RaiseSessionConnectedEvent( [NotNull] Player player )
        {
            if ( player == null )
                throw new ArgumentNullException( "player" );
            var h = SessionConnected;
            if ( h != null )
                h( null, new PlayerEventArgs( player ) );
        }