mirror of https://github.com/axmolengine/axmol.git
16 lines
212 B
C
16 lines
212 B
C
|
#pragma once
|
||
|
|
||
|
#include "Macros.h"
|
||
|
#include "Types.h"
|
||
|
#include "base/CCRef.h"
|
||
|
|
||
|
CC_BACKEND_BEGIN
|
||
|
|
||
|
class RenderPipeline : public cocos2d::Ref
|
||
|
{
|
||
|
protected:
|
||
|
virtual ~RenderPipeline() = default;
|
||
|
};
|
||
|
|
||
|
CC_BACKEND_END
|