ACR_ServerCommunicator.GameWorldManager.InsertNewPlayer C# (CSharp) Method

InsertNewPlayer() private method

This function inserts a player into the various player lists and issues the player load event.
private InsertNewPlayer ( ACR_ServerCommunicator.GamePlayer Player, IALFADatabase Database ) : void
Player ACR_ServerCommunicator.GamePlayer Supplies the player object to insert. ///
Database IALFADatabase Supplies the database connection to use for /// queries, if required. The active rowset may be consumed.
return void
        private void InsertNewPlayer(GamePlayer Player, IALFADatabase Database)
        {
            PlayerList.Add(Player);
            OnPlayerLoaded(Player);
        }