| 82 | u32 CPatrolPathParams::point(const Fvector& point) const { return (m_path->point(point)->vertex_id()); } |
| 83 | |
| 84 | bool CPatrolPathParams::flag(u32 index, u8 flag_index) const |
| 85 | { |
| 86 | VERIFY(m_path->vertex(index)); |
| 87 | return (!!(m_path->vertex(index)->data().flags() & (u32(1) << flag_index))); |
| 88 | } |
| 89 | |
| 90 | Flags32 CPatrolPathParams::flags(u32 index) const |
| 91 | { |