mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-04 13:17:08 -04:00
18 lines
201 B
C++
18 lines
201 B
C++
//
|
|
// Created by mateusz on 06.02.2020.
|
|
//
|
|
|
|
#ifndef GUI_CORE_AXES_HPP_
|
|
#define GUI_CORE_AXES_HPP_
|
|
|
|
namespace gui
|
|
{
|
|
enum class Axis
|
|
{
|
|
X,
|
|
Y
|
|
};
|
|
}
|
|
|
|
#endif // GUI_CORE_AXES_HPP_
|