This commit is contained in:
Nikita Kruglickiy
2023-05-22 19:06:26 +03:00
parent 345e60cf1d
commit 09be0ea795
35 changed files with 1423 additions and 336 deletions

View File

@@ -1,7 +1,7 @@
types = {
local Types = {
MANUAL = 'MANUAL',
AUTO = 'AUTOMATIC/ROBOT',
CVT = 'CVT'
}
return types
return Types

View File

@@ -0,0 +1,7 @@
return {
Engine = 1,
Clutch = 2,
Gearbox = 3,
Differential = 4,
Wheel = 5
}