This commit is contained in:
Dan Albert
2021-02-12 19:58:30 -08:00
parent 053663bd76
commit a47bef1f13
222 changed files with 8434 additions and 4461 deletions

View File

@@ -2,7 +2,6 @@ from dcs import Point
class PointWithHeading(Point):
def __init__(self):
super(PointWithHeading, self).__init__(0, 0)
self.heading = 0
@@ -13,4 +12,4 @@ class PointWithHeading(Point):
p.x = point.x
p.y = point.y
p.heading = heading
return p
return p