mirror of
https://github.com/edubart/otclient.git
synced 2025-06-07 19:34:29 +02:00
11 lines
175 B
C++
11 lines
175 B
C++
#include <jni.h>
|
|
#include <main.cpp>
|
|
|
|
void android_main( struct android_app* state ) {
|
|
int argc = 0;
|
|
const char* argv[1];
|
|
argv[0] = NULL;
|
|
|
|
main(argc, argv);
|
|
}
|