1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
//-----------------------------------------------------------------------------
/** @file libpentobi_base/Geometry.h
@author Markus Enzenberger
@copyright GNU General Public License version 3 or later */
//-----------------------------------------------------------------------------
#ifndef LIBPENTOBI_BASE_GEOMETRY_H
#define LIBPENTOBI_BASE_GEOMETRY_H
#include "Point.h"
#include "libboardgame_base/Geometry.h"
namespace libpentobi_base {
//-----------------------------------------------------------------------------
using Geometry = libboardgame_base::Geometry<Point>;
//-----------------------------------------------------------------------------
} // namespace libpentobi_base
#endif // LIBPENTOBI_BASE_GEOMETRY_H
|