Play-/Source/ui_android/com_virtualapplications_play_Bootable.h

26 lines
434 B
C
Raw Permalink Normal View History

#include <jni.h>
#include "Singleton.h"
namespace com
{
namespace virtualapplications
{
namespace play
{
class Bootable_ClassInfo : public CSingleton<Bootable_ClassInfo>
{
public:
void PrepareClassInfo();
2018-08-29 13:53:51 -04:00
jclass clazz = NULL;
jmethodID init = NULL;
jfieldID path = NULL;
jfieldID discId = NULL;
jfieldID title = NULL;
jfieldID coverUrl = NULL;
2019-01-05 23:56:19 +00:00
jfieldID overview = NULL;
};
}
}
}