LockOSThread

This commit is contained in:
Milan Nikolic 2017-10-27 15:29:08 +02:00
parent fb585b0065
commit c7ce53dba7

10
raylib/raylib.go Normal file
View file

@ -0,0 +1,10 @@
// 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()
}