1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-16 12:35:22 +00:00
OpenDiablo2/src/OpenDiablo2.Common/include/OpenDiablo2.Common/D2DataManager.h

22 lines
456 B
C
Raw Normal View History

#ifndef OPENDIABLO2_COMMON_D2DATAMANAGER_H
#define OPENDIABLO2_COMMON_D2DATAMANAGER_H
#include <memory>
#include <map>
#include <string>
#include <OpenDiablo2.Common/D2EngineConfig.h>
namespace OpenDiablo2::Common {
class D2DataManager {
public:
typedef std::unique_ptr<D2DataManager> Ptr;
D2DataManager(const D2EngineConfig& engineConfig);
private:
std::map<std::string, std::string> fileEntries;
};
}
#endif // OPENDIABLO2_COMMON_D2DATAMANAGER_H