miqt/examples/android/startup_android.go

15 lines
173 B
Go

// +build android
package main
import "C" // Required for export support
//export AndroidMain
func AndroidMain() {
myRealMainFunc()
}
func main() {
// Must be empty
}