AniDragDebugScene.h
826 Bytes
//
// AniDragDebugScene.h
// WattsenglishToyApp
//
// Created by Katarzyna Kalinowska-Górska on 15/12/2019.
//
#ifndef AniDragDebugScene_h
#define AniDragDebugScene_h
#include "AniParentScene.h"
class AniDragDebugScene : public AniParentScene
{
public:
static AniDragDebugScene* create(std::string layoutFilePath = "", std::string scenarioFilePath = "");
virtual void onEnter() override;
virtual void onEnterTransitionDidFinish() override;
protected:
// virtual bool touchHandlerForWidget(std::string objectName, cocos2d::ui::Widget::TouchEventType touchEventType) override;
// virtual bool onBackButtonClicked();
// virtual bool onReplayButtonClicked();
// virtual bool onFastForwardButtonClicked();
};
#endif /* AniDragDebugScene_h */