0 Members and 2 Guests are viewing this topic.
#include "stdafx.h"#include <SFML/System.hpp>#include <iostream>int main(){ sf::Clock Clock; while (Clock.GetElapsedTime() < 5.f) { std::cout << Clock.GetElapsedTime() << std::endl; sf::Sleep(0.5f); } return 0;}