path:
root/
src/
controller/
callbacks/
mouse_wheel.h (
plain)
blob: 8f6a57dde3f1be72dd0f92388d07db5b20fe2f3d
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef MOUSE_WHEEL_H
#define MOUSE_WHEEL_H
/*
* GLUT callback to be called whenever the scroll wheel is scrolled.
* Based on code from Ashwin at
* http://stackoverflow.com/questions/14378/using-the-mouse-scrollwheel-in-glut/14444.
*/
void mouse_wheel (int, int, int, int);
#endif // MOUSE_WHEEL_H
|