mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 05:07:48 +00:00
22 lines
676 B
C
22 lines
676 B
C
/********************************************************************************//**
|
|
\file OVR.h
|
|
\brief The main public interface to Oculus for C++ Developers.
|
|
\copyright Copyright 2015 Oculus VR, LLC All Rights reserved.
|
|
*************************************************************************************/
|
|
|
|
#ifndef OVR_h
|
|
#define OVR_h
|
|
|
|
#include "OVR_Version.h"
|
|
#include "OVR_CAPI.h"
|
|
|
|
/* The following includes are deprecated from this location and will be removed from a future version of this library. */
|
|
#include "Kernel/OVR_Types.h"
|
|
#include "Kernel/OVR_RefCount.h"
|
|
#include "Kernel/OVR_Std.h"
|
|
#include "Kernel/OVR_Alg.h"
|
|
#include "Extras/OVR_Math.h"
|
|
|
|
#endif
|
|
|