mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
* tidy * Automated clang-tidy change: modernize-concat-nested-namespaces * compile test * fix namespace --------- Co-authored-by: Clang Tidy <clang-tidy@users.noreply.github.com>
27 lines
286 B
C++
27 lines
286 B
C++
/** @file
|
|
*
|
|
* @par History
|
|
*/
|
|
|
|
|
|
#ifndef PLIB_MAPSHAPE_H
|
|
#define PLIB_MAPSHAPE_H
|
|
|
|
#include <vector>
|
|
|
|
|
|
namespace Pol::Plib
|
|
{
|
|
struct MapShape
|
|
{
|
|
short z;
|
|
short height;
|
|
unsigned int flags;
|
|
};
|
|
|
|
class MapShapeList : public std::vector<MapShape>
|
|
{
|
|
};
|
|
} // namespace Pol::Plib
|
|
|
|
#endif
|