5daad4bc
xiaoyu
游戏源码添加编译(现存问题:游戏内...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
//
// 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 */
|