Global.cpp 320 B

123456789101112131415161718
  1. #include "Fenster.h"
  2. #define Global
  3. #include "Globals.h"
  4. void Framework::initFramework()
  5. {
  6. MausTrack = 1;
  7. for( int i = 0; i < 255; i++ )
  8. TastenStand[ i ] = 0;
  9. for( int i = 0; i < 3; i++ )
  10. MausStand[ i ] = 0;
  11. msgExit = 0;
  12. }
  13. bool Framework::getTastenStand( unsigned char taste )
  14. {
  15. return TastenStand[ taste ];
  16. }