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
commit 26e252b0f8
Notes: sideshowbarker 2024-07-19 13:07:21 +09:00
2 changed files with 11 additions and 8 deletions

View file

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