public void GetClothes(Race myRace)
        {
            String mySexLocation = null;

            mySexLocation = myLocation + "/clothing/" + myRace.RaceName.ToLower() + "/female/";
            List <Tuple <string, Texture2D[]> > myLoadedFiles = RecurseInDirectoryAs <Texture2D>(mySexLocation);

            myRace.AddClothing("female", myLoadedFiles);

            mySexLocation = myLocation + "/clothing/" + myRace.RaceName.ToLower() + "/male/";
            myLoadedFiles = RecurseInDirectoryAs <Texture2D>(mySexLocation);
            myRace.AddClothing("male", myLoadedFiles);

            mySexLocation = myLocation + "/clothing/" + myRace.RaceName.ToLower() + "/all/";
            myLoadedFiles = RecurseInDirectoryAs <Texture2D>(mySexLocation);
            myRace.AddClothing("all", myLoadedFiles);
        }