Advertisement
Guest User

Window.cpp

a guest
Aug 17th, 2012
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include "stdafx.h"
  2. #include <SFML/Window.hpp>
  3.  
  4. int APIENTRY _tWinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nCmdShow)
  5. {
  6. sf::Window App(sf::VideoMode(800, 600, 32), "SFML Window");
  7.  
  8. App.Display();
  9.  
  10. return EXIT_SUCCESS;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement