polserver/pol-core/plib/mapshape.h
turley 9094b3bd8c Optimized los check by introducing caching
added Google Benchmark lib (currently linux only)
compile with ENABLE_BENCHMARK see bin-build/build_tools.sh
2016-12-18 12:48:35 +01:00

28 lines
273 B
C++

/** @file
*
* @par History
*/
#ifndef PLIB_MAPSHAPE_H
#define PLIB_MAPSHAPE_H
#include <vector>
namespace Pol
{
namespace Plib
{
struct MapShape
{
short z;
short height;
unsigned int flags;
};
class MapShapeList : public std::vector<MapShape>
{
};
}
}
#endif