empty classes

This commit is contained in:
Kulikova Svetlana
2020-10-08 18:29:17 +03:00
parent 63e45f1bca
commit 32faf79a84
6 changed files with 44 additions and 4 deletions

View File

@ -0,0 +1,6 @@
#include "graphics.h"
CJSGraphics::CJSGraphics()
{
}

View File

@ -0,0 +1,15 @@
#ifndef CJSGRAPHICS_H
#define CJSGRAPHICS_H
#include "../../common/Types.h"
#include "../../../Common/3dParty/v8/v8/include/v8.h"
#include "../../../Common/3dParty/v8/v8/include/libplatform/libplatform.h"
class CJSGraphics
{
private:
public:
CJSGraphics();
};
#endif // CJSGRAPHICS_H

View File

@ -0,0 +1,6 @@
#include "graphics_wrapper.h"
CJSGraphicsWrapper::CJSGraphicsWrapper()
{
}

View File

@ -0,0 +1,10 @@
#ifndef CJSGRAPHICS_WRAPPER_H
#define CJSGRAPHICS_WRAPPER_H
class CJSGraphicsWrapper
{
public:
CJSGraphicsWrapper();
};
#endif // CJSGRAPHICS_WRAPPER_H