Added missing change in last commit

This commit is contained in:
bernatx 2019-02-20 15:31:51 +01:00
parent 737431735c
commit a890649bd8
1 changed files with 3 additions and 2 deletions

View File

@ -25,7 +25,8 @@ void export_client() {
.def("start_recorder", &cc::Client::StartRecorder, (arg("name")))
.def("stop_recorder", &cc::Client::StopRecorder)
.def("show_recorder_file_info", &cc::Client::ShowRecorderFileInfo, (arg("name")))
.def("replay_file", &cc::Client::ReplayFile, (arg("name"), arg("time_start"), arg("duration")))
.def("show_recorder_collisions", &cc::Client::ShowRecorderCollisions, (arg("name")), (arg("type1")), (arg("type2")))
.def("show_recorder_actors_blocked", &cc::Client::ShowRecorderActorsBlocked, (arg("name")), (arg("min_time")), (arg("min_distance")))
.def("replay_file", &cc::Client::ReplayFile, (arg("name"), arg("time_start"), arg("duration"), arg("follow_id")))
;
}