/** * @file Mouse.h * @author apio (cloudapio.eu) * @brief Mouse buttons. * * @copyright Copyright (c) 2023, the Luna authors. * */ #pragma once #include namespace ui { enum MouseButtons { LEFT = moon::Left, MIDDLE = moon::Middle, RIGHT = moon::Right, }; }