| 726 | |
| 727 | |
| 728 | int LuaSpatial::GetFlagsInBox(lua_State* L) { |
| 729 | BoxData box; |
| 730 | ParseBox(L, box); |
| 731 | std::vector<const Flag*> hits; |
| 732 | CheckFlags(FlagInBox, box, hits); |
| 733 | PushFlags(L, hits); |
| 734 | return 1; |
| 735 | } |
| 736 | |
| 737 | |
| 738 | int LuaSpatial::GetVisibleFlags(lua_State* L) { |
nothing calls this directly
no test coverage detected