/**
 * @file Mouse.h
 * @author apio (cloudapio.eu)
 * @brief Mouse buttons.
 *
 * @copyright Copyright (c) 2023, the Luna authors.
 *
 */

#pragma once
#include <moon/Mouse.h>

namespace ui
{
    enum MouseButtons
    {
        LEFT = moon::Left,
        MIDDLE = moon::Middle,
        RIGHT = moon::Right,
    };
}