CmOSCursor.h 328 B

123456789101112
  1. #pragma once
  2. #include "CmPrerequisites.h"
  3. //Bring in the specific platform's header file
  4. #if CM_PLATFORM == CM_PLATFORM_WIN32
  5. # include "Win32/CmOSCursorImpl.h"
  6. #elif (CM_PLATFORM == CM_PLATFORM_LINUX)
  7. # include "GLX/CmOSCursorImpl.h"
  8. #elif CM_PLATFORM == CM_PLATFORM_APPLE
  9. # include "OSX/CmOSCursorImpl.h"
  10. #endif