LeviLamina
Loading...
Searching...
No Matches
MouseActionCategory.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Editor::Input {
6
7enum class MouseActionCategory : int {
8 Invalid = 0,
9 Button = 1,
10 Wheel = 2,
11 Drag = 3,
12};
13
14}