more decode and encode code
This commit is contained in:
@@ -2,3 +2,6 @@
|
||||
name = "macroquad"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
macroquad = "0.4"
|
||||
@@ -0,0 +1,16 @@
|
||||
use macroquad::prelude::*;
|
||||
|
||||
#[macroquad::main("BasicShapes")]
|
||||
async fn main() {
|
||||
loop {
|
||||
clear_background(RED);
|
||||
|
||||
draw_line(40.0, 40.0, 100.0, 200.0, 15.0, BLUE);
|
||||
draw_rectangle(screen_width() / 2.0 - 60.0, 100.0, 120.0, 60.0, GREEN);
|
||||
draw_circle(screen_width() - 30.0, screen_height() - 30.0, 15.0, YELLOW);
|
||||
|
||||
draw_text("IT WORKS!", 20.0, 20.0, 30.0, DARKGRAY);
|
||||
|
||||
next_frame().await
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user