Defer begin/end in examples

This commit is contained in:
Not-Nik 2023-07-20 16:39:06 +02:00
parent e13c5bf521
commit 286324cf03
Failed to generate hash of commit
10 changed files with 40 additions and 45 deletions

View file

@ -37,14 +37,13 @@ pub fn main() anyerror!void {
// Draw
//----------------------------------------------------------------------------------
rl.beginDrawing();
defer rl.endDrawing();
rl.clearBackground(rl.Color.ray_white);
rl.drawCircleV(ballPosition, 40, ballColor);
rl.drawText("move ball with mouse and click mouse button to change color", 10, 10, 20, rl.Color.dark_gray);
rl.endDrawing();
//----------------------------------------------------------------------------------
}
}