7 lines
98 B
Python
7 lines
98 B
Python
from raylib import *
|
|
|
|
InitWindow(800, 450, b"rlGL test")
|
|
SetTargetFPS(60)
|
|
|
|
|
|
print(rlGetVersion())
|