* Initialize window and OpenGL context */
| 22 | * Initialize window and OpenGL context |
| 23 | */ |
| 24 | RLCPP_MAYBEUNUSED RLCPPAPI inline void InitWindow(int width, int height, const std::string& title = "raylib") { |
| 25 | ::InitWindow(width, height, title.c_str()); |
| 26 | } |
| 27 | |
| 28 | /** |
| 29 | * Set title for window |