NRE_Buttons.hpp
Go to the documentation of this file.
1 
10  #pragma once
11 
16  namespace NRE {
21  namespace Event {
22 
27  enum ButtonCode : unsigned char {
28  NO_BUTTON = 0x00,
29  LEFT_BUTTON = 0x01,
30  MIDDLE_BUTTON = 0x02,
31  RIGHT_BUTTON = 0x03,
32  X1_BUTTON = 0x04,
33  X2_BUTTON = 0x05,
34 
35  NUM_BUTTONS = 0x06
36  };
37  }
38  }
Event's API.
The NearlyRealEngine's global namespace.
ButtonCode
Definition: NRE_Buttons.hpp:27