DarkEmu_GameServer.Systems.GetObjects C# (CSharp) Метод

GetObjects() приватный Метод

private GetObjects ( int id ) : object
id int
Результат object
        object GetObjects(int id)
        {
            try
            {
                obj o = GetObject(id);
                if (o != null) return o;

                Systems sys = GetPlayers(id);
                if (sys != null) return sys;

            }
            catch (Exception ex)
            {
                Systems.Debugger.Write(ex);
            }
            return null;
        }
Systems