// This file is generated. Edit scripts/generate-style-code.js, then run `make style-code`. #pragma once #include #include #include namespace mbgl { namespace style { struct BackgroundColor : PaintProperty { static Color defaultValue() { return Color::black(); } }; struct BackgroundPattern : CrossFadedPaintProperty { static std::string defaultValue() { return ""; } }; struct BackgroundOpacity : PaintProperty { static float defaultValue() { return 1; } }; class BackgroundPaintProperties : public PaintProperties< BackgroundColor, BackgroundPattern, BackgroundOpacity > {}; } // namespace style } // namespace mbgl