ffi types file added

This commit is contained in:
JupiterRider 2024-05-29 19:52:11 +02:00
parent 498c661fcb
commit 99dbb4b05c

9
raylib/ffi_types_unix.go Normal file
View file

@ -0,0 +1,9 @@
//go:build !cgo && (freebsd || linux)
package rl
import "github.com/jupiterrider/ffi"
var (
typeColor = ffi.Type{Type: ffi.Struct, Elements: &[]*ffi.Type{&ffi.TypeUint8, &ffi.TypeUint8, &ffi.TypeUint8, &ffi.TypeUint8, nil}[0]}
)