Continuing to implement new steering, removed common.txt, inside functions have been moved to separate files

This commit is contained in:
Иван Грачёв
2021-03-26 22:42:51 +05:00
parent 2f8c949776
commit 5c854e183b
6 changed files with 91 additions and 49 deletions

View File

@@ -1 +1,13 @@
SteerAxle = class("SteerAxle")
function SteerAxle:initialize(config, leftWheel, rightWheel)
self.steer = 0
self.config = config
self.leftWheel = leftWheel
self.rightWheel = rightWheel
end
function SteerAxle:update()
end