| 920 | |
| 921 | |
| 922 | int LuaSpatial::GetShotsInBox(lua_State* L) { |
| 923 | BoxData box; |
| 924 | ParseBox(L, box); |
| 925 | std::vector<const ShotPath*> hits; |
| 926 | CheckShots(ShotInBox, box, hits); |
| 927 | PushShots(L, hits); |
| 928 | return 1; |
| 929 | } |
| 930 | |
| 931 | |
| 932 | int LuaSpatial::GetVisibleShots(lua_State* L) { |
nothing calls this directly
no test coverage detected