Axiom.SceneManagers.Bsp.Collections.Map.FindBucket C# (CSharp) Method

FindBucket() public method

public FindBucket ( object key ) : IList
key object
return IList
        public IList FindBucket( object key )
        {
            if ( buckets[ key ] == null )
            {
                return null;
            }
            else
            {
                return (ArrayList)buckets[ key ];
            }
        }