ACR_ServerCommunicator.GameWorldManager.InsertNewPlayer C# (CSharp) Méthode

InsertNewPlayer() private méthode

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.
Résultat void
        private void InsertNewPlayer(GamePlayer Player, IALFADatabase Database)
        {
            PlayerList.Add(Player);
            OnPlayerLoaded(Player);
        }