mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
added Google Benchmark lib (currently linux only) compile with ENABLE_BENCHMARK see bin-build/build_tools.sh
28 lines
273 B
C++
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
|