| 12345678910111213141516171819 |
- //
- // env.hpp
- // gameutils
- //
- // Created by Sam Jaffe on 5/19/19.
- // Copyright © 2019 Sam Jaffe. All rights reserved.
- //
- #pragma once
- #include <string>
- #include "game/math/math_fwd.hpp"
- namespace env {
- std::string resource_file(std::string const & relative_path);
- void resize_screen(math::vec2i const & size);
- math::vec2i screen_size();
- }
|