-
Notifications
You must be signed in to change notification settings - Fork 2
raylib.IsWindowReady
JoeStrout edited this page Apr 29, 2026
·
2 revisions
Check if window has been initialized successfully
None.
| Condition | Return Value |
|---|---|
| (always) | number |
raylib.InitWindow 800, 600, "Window Ready Demo"
if raylib.IsWindowReady then
print "Window initialized successfully"
else
print "Window failed to initialize"
end if
raylib.CloseWindow