예제 #1
0
#pragma warning disable RCS1163 // Unused parameter.
        internal void ServerActivate(Edict.Native *pEdictList, int edictCount, int clientMax)
#pragma warning restore RCS1163 // Unused parameter.
        {
            try
            {
                //This is done in KeyValue because we need the list earlier than this gets called
                //EntityDictionary.Initialize(pEdictList, Program.Wrapper.Globals.MaxEntities);

                ServerInterface.Activate();
            }
            catch (Exception e)
            {
                Log.Exception(e);
                throw;
            }
        }