OpenSim.Region.CoreModules.Agent.Capabilities.CapabilitiesModule.DropChildSeed C# (CSharp) 메소드

DropChildSeed() 공개 메소드

public DropChildSeed ( UUID agentID, ulong handle ) : void
agentID UUID
handle ulong
리턴 void
        public void DropChildSeed(UUID agentID, ulong handle)
        {
            Dictionary<ulong, string> seeds;
            if (childrenSeeds.TryGetValue(agentID, out seeds))
            {
                seeds.Remove(handle);
            }
        }