10 enum MOUSE { LEFT = 1, MIDDLE = 2, RIGHT = 3 };
 
   30     static bool KeyDown(std::string keyCode);
 
   36     static bool KeyDown(
int keyCode);
 
   49     static SDL_MouseButtonEvent 
GetClick();
 
   88     static void ClearQuit();
 
   90     static void ClearKeys();
 
   92     static void ClearMouse();
 
   96     static bool mQuit, mMouseMove, mMouseClick;
 
   97     static Uint8 *mKeyStates;
 
   98     static SDL_Joystick *mJoystick;
 
   99     static SDL_MouseButtonEvent mButtonEvt;
 
  100     static SDL_MouseMotionEvent mMotionEvt;