Create utils_android.go

This commit is contained in:
JupiterRider 2022-10-25 22:02:00 +02:00 committed by GitHub
parent 76f1c56135
commit bd025d2b1e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

10
raylib/utils_android.go Normal file
View file

@ -0,0 +1,10 @@
//go:build android
// +build android
package rl
// HomeDir - Returns user home directory
// NOTE: On Android this returns internal data path and must be called after InitWindow
func HomeDir() string {
return getInternalStoragePath()
}