Documented all current functions

This commit is contained in:
n00b
2024-10-06 17:07:06 -04:00
parent 641c5c86ca
commit 62363b4b98
256 changed files with 543 additions and 186 deletions

View File

@@ -1,4 +1,20 @@
#title WindowMode [RCBasic Doc]
#header function WindowMode(visible, fullscreen, resizable, borderless, highDPI)
Returns a bitmask of the combined window flags that can be used in OpenWindow() to set the mode for the window.
Each flag is a boolean that determines whether or not to set that flag in the mask.
Note: For most use cases, one of the following will work
Window
#code
mode = WindowMode(1, 0, 0, 0, 0)
#/code
<br>
Fullscreen
#code
mode = WindowMode(1, 1, 0, 0, 0)
#/code
#ref OpenWindow GetWindowMode