mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-19 15:25:39 +00:00
13 lines
239 B
C++
13 lines
239 B
C++
/* $Id$ */
|
|
|
|
/** @file geometry_func.hpp Geometry functions. */
|
|
|
|
#ifndef GEOMETRY_FUNC_HPP
|
|
#define GEOMETRY_FUNC_HPP
|
|
|
|
#include "geometry_type.hpp"
|
|
|
|
Dimension maxdim(const Dimension &d1, const Dimension &d2);
|
|
|
|
#endif /* GEOMETRY_FUNC_HPP */
|