| 749 | |
| 750 | |
| 751 | int LuaSpatial::GetRadarFlags(lua_State* L) { |
| 752 | BoxData box; |
| 753 | if (!GetRadarBox(box)) { |
| 754 | lua_newtable(L); |
| 755 | return 1; |
| 756 | } |
| 757 | std::vector<const Flag*> hits; |
| 758 | CheckFlags(FlagInBox, box, hits); |
| 759 | PushFlags(L, hits); |
| 760 | return 1; |
| 761 | } |
| 762 | |
| 763 | |
| 764 | //============================================================================// |
nothing calls this directly
no test coverage detected