env.hpp 242 B

123456789101112131415
  1. //
  2. // env.hpp
  3. // gameutils
  4. //
  5. // Created by Sam Jaffe on 5/19/19.
  6. // Copyright © 2019 Sam Jaffe. All rights reserved.
  7. //
  8. #pragma once
  9. #include <string>
  10. namespace env {
  11. std::string resource_file(std::string const & relative_path);
  12. }