env.hpp 354 B

12345678910111213141516171819
  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. #include "game/math/math_fwd.hpp"
  11. namespace env {
  12. std::string resource_file(std::string const & relative_path);
  13. void resize_screen(math::vec2i const & size);
  14. math::vec2i screen_size();
  15. }