Advertisement
Vultraz

Untitled

May 4th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.57 KB | None | 0 0
  1. template<
  2.         ui_event sdl_button_down_t,
  3.         ui_event sdl_button_up_t,
  4.         ui_event button_down_t,
  5.         ui_event button_up_t,
  6.         ui_event button_click_t,
  7.         ui_event button_double_click_t>
  8. struct mouse_button_event_types_wrapper
  9. {
  10.     const ui_event sdl_button_down       = sdl_button_down_t;
  11.     const ui_event sdl_button_up         = sdl_button_up_t;
  12.     const ui_event button_down           = button_down_t;
  13.     const ui_event button_up             = button_up_t;
  14.     const ui_event button_click          = button_click_t;
  15.     const ui_event button_double_click   = button_double_click_t;
  16. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement