This commit is contained in:
Milan Nikolic 2021-11-11 17:03:15 +01:00
parent 3e1b83e017
commit dda13779be
No known key found for this signature in database
GPG key ID: 9229D0EAA3AA4E75
16 changed files with 17 additions and 2 deletions

View file

@ -2,6 +2,7 @@ package raygui
import (
"fmt"
"github.com/gen2brain/raylib-go/raylib"
)

View file

@ -1,3 +1,4 @@
//go:build android
// +build android
package rl

View file

@ -1,3 +1,4 @@
//go:build darwin
// +build darwin
package rl

View file

@ -1,3 +1,4 @@
//go:build linux && !drm && !rpi && !android
// +build linux,!drm,!rpi,!android
package rl

View file

@ -1,3 +1,4 @@
//go:build linux && drm && !rpi && !android
// +build linux,drm,!rpi,!android
package rl

View file

@ -1,3 +1,4 @@
//go:build linux && rpi && !drm && !android
// +build linux,rpi,!drm,!android
package rl

View file

@ -1,3 +1,4 @@
//go:build windows
// +build windows
package rl

View file

@ -1,3 +1,4 @@
//go:build android
// +build android
package rl

View file

@ -1,3 +1,4 @@
//go:build !rpi && !drm && !android
// +build !rpi,!drm,!android
package rl

View file

@ -1,3 +1,4 @@
//go:build linux && drm && !rpi && !android
// +build linux,drm,!rpi,!android
package rl

View file

@ -1,3 +1,4 @@
//go:build linux && rpi && !drm && !android
// +build linux,rpi,!drm,!android
package rl

View file

@ -1,3 +1,4 @@
//go:build !android
// +build !android
package rl

View file

@ -1,3 +1,4 @@
//go:build !android && !windows
// +build !android,!windows
package rl

View file

@ -1,3 +1,4 @@
//go:build android
// +build android
package rl

View file

@ -1,3 +1,4 @@
//go:build windows
// +build windows
package rl