Guest User

Untitled

a guest
Nov 8th, 2021
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.34 KB | None | 0 0
  1. int main(int, char const**)
  2. {
  3. //
  4. //    App app = App();
  5. //    app.run();
  6. //
  7.  
  8.     sf::Texture tilesetImage;
  9.     if (!tilesetImage.loadFromFile(resourcePath() + "tileset.png"))
  10.     {
  11.         std::cout << "Couldn't load tileset file " << std::endl;
  12.         exit(-1);
  13.     }
  14.  
  15. //    printResourcePath();
  16.    
  17.     return EXIT_SUCCESS;
  18. }
  19.  
  20.  
Advertisement
Add Comment
Please, Sign In to add comment