| 436 | extern SDL_Window* window; |
| 437 | |
| 438 | void recompui::get_window_size(int& width, int& height) { |
| 439 | SDL_GetWindowSizeInPixels(window, &width, &height); |
| 440 | } |
| 441 | |
| 442 | inline const std::string read_file_to_string(std::filesystem::path path) { |
| 443 | std::ifstream stream = std::ifstream{path}; |
nothing calls this directly
no outgoing calls
no test coverage detected