keys setup to use extern
[physics.git] / src / config / keys.cpp
index 6a15f6e..6ac87bb 100644 (file)
 
 #include <SDL/SDL.h>
 
-/// ***** Private Method Headers *****
-/// ***** Private Variables *****
-
-/// ***** Initializers/Cleaners *****
-void key::init()
-{
-    pause = SDLK_p;
-    end = SDLK_ESCAPE;
-
-    follow = SDLK_f;
-
-    well = SDLK_SPACE;
-
-    cout << &key::end << endl;
-}
-void key::clean()
-{
-}
+/// ***** Definitions of the extern keys *****
+SDLKey key::pause = SDLK_p;
+SDLKey key::end = SDLK_ESCAPE;
+SDLKey key::follow = SDLK_f;
+SDLKey key::well = SDLK_SPACE;