NAP
mouse.h
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
4 
5 #pragma once
6 
7 #include <utility/dllexport.h>
8 
9 namespace nap
10 {
14  enum class EMouseButton : int
15  {
16  UNKNOWN = -1,
17  LEFT = 0,
18  MIDDLE = 1,
19  RIGHT = 2
20  };
21 }
nap::EMouseButton
EMouseButton
Definition: mouse.h:14
nap::EMouseButton::UNKNOWN
@ UNKNOWN
nap
Definition: templateapp.h:17
nap::EMouseButton::LEFT
@ LEFT
nap::EMouseButton::MIDDLE
@ MIDDLE
nap::EMouseButton::RIGHT
@ RIGHT