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/NavMeshType.h
frank 55061ef0da minor changes to floorplan
fixed some compile issues
worked on nav-meshes
added some tests
2018-01-16 12:41:05 +01:00

23 lines
263 B
C++

#ifndef NAVMESHTYPE_H
#define NAVMESHTYPE_H
namespace NM {
enum class NavMeshType {
UNWALKABLE, // needed by Recast
FLOOR_INDOOR,
FLOOR_OUTDOOR,
DOOR,
STAIR_LEVELED, // eben
STAIR_SKEWED, // schraeg
ELEVATOR,
};
}
#endif // NAVMESHTYPE_H