Created
          February 23, 2011 15:03 
        
      - 
      
- 
        Save maidis/840518 to your computer and use it in GitHub Desktop. 
    saat.cpp
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #include <SFML/System.hpp> | |
| #include <iostream> | |
| int main() | |
| { | |
| sf::Clock Saat; | |
| while (Saat.GetElapsedTime() < 5.f) | |
| { | |
| std::cout << Saat.GetElapsedTime() << std::endl; | |
| sf::Sleep(0.5f); | |
| } | |
| return 0; | |
| } | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment