XPMP2
X-Plane multiplayer library 2 - using instancing
Map.h
Go to the documentation of this file.
1
20
21#ifndef _Map_h_
22#define _Map_h_
23
24namespace XPMP2 {
25
27typedef std::map<std::string, XPLMMapLayerID> mapMapLayerIDTy;
28
30void MapInit ();
31
33void MapCleanup ();
34
35
36}
37
38#endif
Definition XPMPAircraft.h:76
void MapInit()
Initialize the module.
Definition Map.cpp:371
void MapCleanup()
Grace cleanup.
Definition Map.cpp:382
std::map< std::string, XPLMMapLayerID > mapMapLayerIDTy
A map holding our layer identifier, indexed by the map's name.
Definition Map.h:27