separate tests for dynamic

This commit is contained in:
richard 2022-02-02 20:29:45 +00:00
parent 82d310ea76
commit 7b889a2350
12 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,8 @@
from pyray import *
init_window(800, 450, "Hello")
while not window_should_close():
begin_drawing()
clear_background(WHITE)
draw_text("Hello world", 190, 200, 20, VIOLET)
end_drawing()
close_window()