Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Sep 21st, 2012  |  syntax: None  |  size: 0.22 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. #pragma once
  2. #include <SFML/Graphics.hpp>
  3. #include "bar.h"
  4.  
  5. class KeyManager {
  6.         public:
  7.                 KeyManager();
  8.                 bool is_moving_up,
  9.                         is_moving_down,
  10.                         is_app_running;
  11.                 void check_input(sf::RenderWindow*);
  12.                 void updateBar(Bar*);
  13. };