mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 21:57:57 +03:00
25 lines
434 B
C++
25 lines
434 B
C++
#include <jni.h>
|
|
#include "Singleton.h"
|
|
|
|
namespace com
|
|
{
|
|
namespace virtualapplications
|
|
{
|
|
namespace play
|
|
{
|
|
class Bootable_ClassInfo : public CSingleton<Bootable_ClassInfo>
|
|
{
|
|
public:
|
|
void PrepareClassInfo();
|
|
|
|
jclass clazz = NULL;
|
|
jmethodID init = NULL;
|
|
jfieldID path = NULL;
|
|
jfieldID discId = NULL;
|
|
jfieldID title = NULL;
|
|
jfieldID coverUrl = NULL;
|
|
jfieldID overview = NULL;
|
|
};
|
|
}
|
|
}
|
|
}
|