DungeonMasterParser.DungeonData.GetFloorTextureNames C# (CSharp) Method

GetFloorTextureNames() private method

private GetFloorTextureNames ( ) : IList
return IList
        private IList<string> GetFloorTextureNames()
        {
            var floorDecorations = new string[9];
            floorDecorations[0] = "Square Grate";
            floorDecorations[1] = "Square Pressure Pad";
            floorDecorations[2] = "Moss";
            floorDecorations[3] = "Round Grate";
            floorDecorations[4] = "Round Pressure Plate";
            floorDecorations[5] = "Black Flame Pit";
            floorDecorations[6] = "Crack";
            floorDecorations[7] = "Tiny Pressure Pad";
            floorDecorations[8] = "Puddle";
            return floorDecorations;
        }