X-Git-Url: http://gitweb.pgornicz.com/gitweb.cgi?p=physics.git;a=blobdiff_plain;f=src%2Fconfig%2Fkeys.cpp;h=6ac87bb3248ed7111ed76caedb6bc384817d8a31;hp=6a15f6e186f73902b53b26931eaca2c41f897398;hb=1878e7c1f8cef670e740a8f63f48afcb98386cdf;hpb=c04d3365e5e66c2595257ebcd06191454ff6bff8 diff --git a/src/config/keys.cpp b/src/config/keys.cpp index 6a15f6e..6ac87bb 100644 --- a/src/config/keys.cpp +++ b/src/config/keys.cpp @@ -20,21 +20,8 @@ #include -/// ***** 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;