// GLUT mouse motion handler
#ifndef MOTION_H
#define MOTION_H

// adjust artificial latency
void adjustLatency(int ms);

// called when a mouse button is pressed.
extern "C" void mousePress(int b, int state, int x, int y);
extern "C" void mouseDrag(int x, int y);

#endif
