1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 06:38:10 +00:00

LibDraw: Move the Orientation enum to its own LibDraw header file.

This commit is contained in:
Andreas Kling 2019-07-20 16:46:01 +02:00
parent d48c73b10a
commit 26e252b0f8
2 changed files with 11 additions and 8 deletions

View file

@ -0,0 +1,6 @@
#pragma once
enum class Orientation {
Horizontal,
Vertical
};