diff --git a/README.md b/README.md index 99252ead508bb5905625dff04c7072bba2b9edc1..e3dc28fb670c37f9c47b616db7c48445e9ee3732 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,8 @@ open_window(800, 800, "My Game") set_fps(60) +axe_image = load_image("images/axe.png") + while window_running() do start_drawing() clear_window(color.BLACK) @@ -42,6 +44,8 @@ if button_down(button.PAD_UP) then draw_text("Pad Up", 10, 10, 20, color.VIOLET) end + + draw_image(axe_image, 100, 200) draw_info() stop_drawing()