raylib-go/raylib/utils_android.go
2022-10-25 22:02:00 +02:00

10 lines
239 B
Go

//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()
}