Created
May 17, 2016 23:31
-
-
Save Ohohcakester/ca2238fceaffaa94646bcfd52c0183d5 to your computer and use it in GitHub Desktop.
A minimal SFML sample
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/Graphics.hpp> | |
#include <iostream> | |
int RES_X = 800; | |
int RES_Y = 600; | |
sf::RenderWindow window(sf::VideoMode(RES_X, RES_Y), "Sample Game"); | |
int main() { | |
std::cout << "Success"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment