283e98faa0
* Fix building for 2023 revit fakes * add Revit 2022 * fmt
15 lines
328 B
C#
15 lines
328 B
C#
namespace Autodesk.Revit.DB.Analysis;
|
|
|
|
public enum ConceptualConstructionRoofType
|
|
{
|
|
InvalidRoofTypeConstruction,
|
|
HighInsulationCoolRoof,
|
|
HighInsulationDarkRoof,
|
|
TypicalInsulationCoolRoof,
|
|
TypicalInsulationDarkRoof,
|
|
LowInsulationCoolRoof,
|
|
LowInsulationDarkRoof,
|
|
NoInsulationDarkRoof,
|
|
NumRoofTypeConstruction,
|
|
}
|