---------------------------------------------------------------------------------- Module Functions Definition ----------------------------------------------------------------------------------
| 59 | // Module Functions Definition |
| 60 | //---------------------------------------------------------------------------------- |
| 61 | void UpdateDrawFrame(void) |
| 62 | { |
| 63 | // Update |
| 64 | //---------------------------------------------------------------------------------- |
| 65 | // TODO: Update your variables here |
| 66 | //---------------------------------------------------------------------------------- |
| 67 | |
| 68 | // Draw |
| 69 | //---------------------------------------------------------------------------------- |
| 70 | BeginDrawing(); |
| 71 | |
| 72 | ClearBackground(RAYWHITE); |
| 73 | |
| 74 | DrawText("Congrats! You created your first raylib-cpp window!", 160, 200, 20, LIGHTGRAY); |
| 75 | |
| 76 | EndDrawing(); |
| 77 | //---------------------------------------------------------------------------------- |
| 78 | } |