MapAdventureObjectLog.h
800 Bytes
//
// MapAdventureObjectSlide.h
// WattsenglishFoodApp
//
// Created by Katarzyna Kalinowska-Górska on 21/03/2020.
//
#ifndef MapAdventureObjectLog_h
#define MapAdventureObjectLog_h
#include "MapAdventureObjectRotatingEnd.h"
#include "AniMapUtils.h"
#include "AniJSONParseUtilsMap.h"
class MapAdventureObjectLog : public MapAdventureObjectRotatingEnd {
public:
constexpr static char* const ClassName {const_cast<char* const>("MapAdventureObjectLog")};
// init
MapAdventureObjectLog(const rapidjson::Value& p_mapObjectData, IMapImageObject* p_mapImageObject, IMapImageObject* p_hintMapImageObject);
protected:
// std::vector<MapUtils::TileData> m_tilesToUnlock;
virtual void performOnRotationComplete() override;
};
#endif /* MapAdventureObjectLog_h */