Skip to content

Instantly share code, notes, and snippets.

@allan-simon
Last active August 29, 2015 14:02
Show Gist options
  • Save allan-simon/3742fb30aca6b0a00875 to your computer and use it in GitHub Desktop.
Save allan-simon/3742fb30aca6b0a00875 to your computer and use it in GitHub Desktop.
#include <string>
#include <iostream>
#include <SFML/Window.hpp>
int main() {
sf::Window application(
sf::VideoMode(800, 600),
"test"
);
sf::Event event;
// on purpose
while (true) {
while (application.pollEvent(event)) {
if (event.type == sf::Event::Closed) {
return 0;
}
if (event.type == sf::Event::MouseLeft) {
std::cout << "Oh a mouse left event" << std::endl;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment