mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2025-03-01 07:01:21 +00:00
21 lines
392 B
C
21 lines
392 B
C
#ifndef __VR_BASE
|
|
#define __VR_BASE
|
|
|
|
#if __ANDROID__
|
|
|
|
#include "vr_types.h"
|
|
|
|
#define WORLD_SCALE 37.5f
|
|
#define PLAYER_HEIGHT 48
|
|
|
|
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 );
|
|
bool VR_useScreenLayer( void );
|
|
|
|
#endif
|
|
|
|
#endif
|