Advertisement
Guest User

Untitled

a guest
May 10th, 2025
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. #include <fstream>
  2. #include <iostream>
  3.  
  4. ...
  5. std::ifstream File;
  6. std::string temp;
  7.  
  8. // Things that I have tried... //
  9. File.open("Playable_Character.txt"); // Open File
  10. File.open("..\\Playable_Character.txt"); // Open File
  11. File.open("User Code\\Playable_Character.txt"); // Open File
  12. File.open("src\\User Code\\Playable_Character.txt"); // Open File
  13. File.open("..\\User Code\\Playable_Character.txt"); // Open File
  14. File.open("..\\src\\User Code\\Playable_Character.txt"); // Open File
  15.  
  16. if (!File)
  17. {
  18. DebugMsg::out("whyyyyyyyyyyy");
  19. }
  20. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement