| 53 | } |
| 54 | |
| 55 | static size_t OnTick(carla::client::World &self, boost::python::object callback) { |
| 56 | return self.OnTick(MakeCallback(std::move(callback))); |
| 57 | } |
| 58 | |
| 59 | static auto Tick(carla::client::World &world, double seconds) { |
| 60 | carla::PythonUtil::ReleaseGIL unlock; |
nothing calls this directly
no test coverage detected