diff --git a/CarPath.py b/CarPath.py new file mode 100644 index 0000000..9382e19 --- /dev/null +++ b/CarPath.py @@ -0,0 +1,11 @@ +#!/usr/bin/python +# -*- coding: UTF-8 -*- + +class CarPath: + def __init__(self, argv4): + self.path = int(argv4[0]) + self.id = int(argv4[1]) + self.time_stage = int(argv4[2]) + + +