10 lines
188 B
Go
10 lines
188 B
Go
// Package raylib - Go bindings for raylib, a simple and easy-to-use library to learn videogames programming
|
|
package raylib
|
|
|
|
import (
|
|
"runtime"
|
|
)
|
|
|
|
func init() {
|
|
runtime.LockOSThread()
|
|
}
|