Add lime.utils.JNI, initially supporting JNI.getEnv

This commit is contained in:
Joshua Granick
2015-02-04 17:13:27 -08:00
parent 4dde860505
commit 7134baafef
5 changed files with 90 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
#ifndef LIME_UTILS_JNI_H
#define LIME_UTILS_JNI_H
namespace lime {
class JNI {
public:
static void *GetEnv ();
};
}
#endif