123456789101112131415161718192021222324252627282930313233343536 |
- //
- // CCBlockTouchLayerLoader.h
- // redream_runtime
- //
- // Created by zhuge on 2023/3/17.
- //
- #ifndef CCBlockTouchLayerLoader_h
- #define CCBlockTouchLayerLoader_h
- #include "CCLayerLoader.h"
- #include "2d/CCBlockTouchLayer.h"
- namespace redream {
- /* Forward declaration. */
- class REDReader;
- class CC_DLL BlockTouchLayerLoader : public LayerLoader {
- public:
- /**
- * @js NA
- * @lua NA
- */
- virtual ~BlockTouchLayerLoader() {};
- RED_STATIC_NEW_AUTORELEASE_OBJECT_METHOD(BlockTouchLayerLoader, loader);
- protected:
- RED_VIRTUAL_NEW_AUTORELEASE_CREATECCNODE_METHOD(cocos2d::CCBlockTouchLayer);
-
- };
- }
- #endif /* CCBlockTouchLayerLoader_h */
|