| 233 | Fvector vertex_position(u32 level_vertex_id) { return (ai().level_graph().vertex_position(level_vertex_id)); } |
| 234 | |
| 235 | void map_add_object_spot(u16 id, LPCSTR spot_type, LPCSTR text) |
| 236 | { |
| 237 | CMapLocation* ml = Level().MapManager().AddMapLocation(spot_type, id); |
| 238 | if (text && xr_strlen(text)) |
| 239 | ml->SetHint(text); |
| 240 | } |
| 241 | |
| 242 | void map_add_object_spot_ser(u16 id, LPCSTR spot_type, LPCSTR text) |
| 243 | { |
nothing calls this directly
no test coverage detected