Create utils_android.go
This commit is contained in:
parent
76f1c56135
commit
bd025d2b1e
1 changed files with 10 additions and 0 deletions
10
raylib/utils_android.go
Normal file
10
raylib/utils_android.go
Normal 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()
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue