This repository has been archived on 2020-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Indoor/navMesh/NavMeshLocation.h
2018-01-10 08:31:14 +01:00

20 lines
291 B
C++

#ifndef NAVMESHLOCATION_H
#define NAVMESHLOCATION_H
#include "../geo/Point3.h"
template <typename Tria> struct NavMeshLocation {
const Tria* tria;
Point3 pos;
/** ctor */
NavMeshLocation(Point3 pos, const Tria* tria) : pos(pos), tria(tria) {
;
}
};
#endif // NAVMESHLOCATION_H