indent classes, align by spaces

This commit is contained in:
Garux
2021-03-24 00:25:15 +03:00
parent 5b1b9b5e6c
commit 2222100316
450 changed files with 42485 additions and 42239 deletions

View File

@@ -60,19 +60,19 @@ void QERApp_GetCamWindowExtents( int *x, int *y, int *width, int *height ){
class CameraAPI
{
_QERCameraTable m_camera;
_QERCameraTable m_camera;
public:
typedef _QERCameraTable Type;
STRING_CONSTANT( Name, "*" );
typedef _QERCameraTable Type;
STRING_CONSTANT( Name, "*" );
CameraAPI(){
m_camera.m_pfnGetCamera = &QERApp_GetCamera;
m_camera.m_pfnSetCamera = &QERApp_SetCamera;
m_camera.m_pfnGetCamWindowExtents = &QERApp_GetCamWindowExtents;
}
_QERCameraTable* getTable(){
return &m_camera;
}
CameraAPI(){
m_camera.m_pfnGetCamera = &QERApp_GetCamera;
m_camera.m_pfnSetCamera = &QERApp_SetCamera;
m_camera.m_pfnGetCamWindowExtents = &QERApp_GetCamWindowExtents;
}
_QERCameraTable* getTable(){
return &m_camera;
}
};
#include "modulesystem/singletonmodule.h"