33 lines
598 B
C++
33 lines
598 B
C++
/*
|
||
* © Copyright 2014 – Urheberrechtshinweis
|
||
* Alle Rechte vorbehalten / All Rights Reserved
|
||
*
|
||
* Programmcode ist urheberrechtlich geschuetzt.
|
||
* Das Urheberrecht liegt, soweit nicht ausdruecklich anders gekennzeichnet, bei Frank Ebner.
|
||
* Keine Verwendung ohne explizite Genehmigung.
|
||
* (vgl. § 106 ff UrhG / § 97 UrhG)
|
||
*/
|
||
|
||
#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
|