light/modules/input/public/mouse_codes.hpp

24 lines
253 B
C++
Raw Normal View History

2022-03-08 21:19:19 +03:30
#pragma once
#include <cstdint>
2025-07-06 16:52:50 +03:30
2025-07-11 00:05:48 +03:30
namespace lt::Mouse {
2022-03-08 21:19:19 +03:30
enum : uint8_t
{
Button1 = 0,
Button2 = 1,
Button3 = 2,
Button4 = 3,
Button5 = 4,
Button6 = 5,
Button7 = 6,
Button8 = 7,
LButton = Button1,
RButton = Button2,
MButton = Button3,
};
2025-07-06 16:52:50 +03:30
}