diff --git a/raylib/utils_android.go b/raylib/utils_android.go new file mode 100644 index 0000000..e820e53 --- /dev/null +++ b/raylib/utils_android.go @@ -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() +}