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
|
//
// AniMapAdventureObjectParser.h
// WattsenglishFoodApp
//
// Created by Katarzyna Kalinowska-Górska on 21/03/2020.
//
#ifndef MapAdventureObjectMapper_h
#define MapAdventureObjectMapper_h
#include "IMapAdventureObject.h"
#include "AniJSONParseUtils.h"
#include "IMapAdventureObjectMapper.h"
class BasicGardenMapAdventureObjectMapper : public IMapAdventureObjectMapper {
public:
IMapAdventureObject* createObject(const rapidjson::Value& p_mapObjectData, IMapAdventureImageObjectLinker* p_linker) override;
protected:
IMapAdventureObject* createObjectFromTypeName(const std::string& p_objectTypeName, const rapidjson::Value& p_mapObjectData, IMapAdventureImageObjectLinker* p_linker);
};
#endif /* AniMapAdventureObjectParser_h */
|