diff --git a/Userland/Applications/PixelPaint/Guide.h b/Userland/Applications/PixelPaint/Guide.h index a1828f0ad6..9592069270 100644 --- a/Userland/Applications/PixelPaint/Guide.h +++ b/Userland/Applications/PixelPaint/Guide.h @@ -14,6 +14,7 @@ namespace PixelPaint { class Guide : public RefCounted { public: enum class Orientation { + Unset, Vertical, Horizontal, }; @@ -33,6 +34,7 @@ public: float offset() const { return m_offset; } void set_offset(float offset) { m_offset = offset; } + void set_orientation(Orientation orientation) { m_orientation = orientation; } private: Orientation m_orientation;