Server: update navigation types

This commit is contained in:
Kawe Mazidjatari 2024-07-29 10:22:09 +02:00
parent 6203bbddbe
commit f9e115c610

View File

@ -16,8 +16,15 @@
// ---------------------------
enum Navigation_e
{
NAV_NONE = -1, // error condition
// TODO: reverse engineer
NAV_NONE = -1,// error condition
NAV_GROUND = 0, // walk/run
NAV_JUMP, // jump/leap
NAV_FLY, // can fly, move all around
NAV_CLIMB, // climb ladders
NAV_CRAWL, // crawl
NAV_TRAVERSE, // traverse
NAV_WALLJUMP, // walljump
NAV_WALLRUN, // wallrun
};
#endif // AI_NAVTYPES_H