5daad4bc
xiaoyu
游戏源码添加编译(现存问题:游戏内...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//
// MapAdventureObjectSlide.cpp
// WattsenglishFoodApp
//
// Created by Katarzyna Kalinowska-Górska on 21/03/2020.
//
#include "AniMapUtils.h"
#include "MapAdventureObjectLog.h"
MapAdventureObjectLog::MapAdventureObjectLog(const rapidjson::Value& p_mapObjectData, IMapImageObject* p_mapImageObject, IMapImageObject* p_hintMapImageObject) : MapAdventureObjectRotatingEnd(p_mapObjectData, p_mapImageObject, p_hintMapImageObject) {
m_objectClassName = "MapAdventureObjectLog";
// m_tilesToUnlock = JSONParseUtilsMap::parseTileDataArray(p_mapObjectData["tilesToUnlock"]);
}
void MapAdventureObjectLog::performOnRotationComplete(){
// just re-enable the tiles and deactivate
m_active = false;
}
|