22 lines
144 B
C++
22 lines
144 B
C++
#ifndef LIME_SYSTEM_JNI_H
|
|
#define LIME_SYSTEM_JNI_H
|
|
|
|
|
|
namespace lime {
|
|
|
|
|
|
class JNI {
|
|
|
|
|
|
public:
|
|
|
|
static void *GetEnv ();
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
#endif |