23 lines
263 B
C++
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
|