mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-29 23:32:23 +00:00
17 lines
286 B
C
17 lines
286 B
C
#ifndef __VR_BASE
|
|
#define __VR_BASE
|
|
|
|
#if __ANDROID__
|
|
|
|
#include "vr_types.h"
|
|
|
|
engine_t* VR_Init( ovrJava java );
|
|
void VR_Destroy( engine_t* engine );
|
|
void VR_EnterVR( engine_t* engine, ovrJava java );
|
|
void VR_LeaveVR( engine_t* engine );
|
|
|
|
engine_t* VR_GetEngine( void );
|
|
|
|
#endif
|
|
|
|
#endif
|