Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions raylib/rcore.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,11 @@ func IsWindowState(flag uint32) bool {
return v
}

// SetWindowFocused - Sets the window to have focus
func SetWindowFocused() {
C.SetWindowFocused()
}

// SetWindowState - Set window configuration state using flags
func SetWindowState(flags uint32) {
cflags := (C.uint)(flags)
Expand Down