summaryrefslogtreecommitdiffstats
path: root/src/control/Transmission.h
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2019-07-07 13:09:11 +0200
committeraap <aap@papnet.eu>2019-07-07 13:09:11 +0200
commit53023eb65bdcde43e341c1ecb7cf0c7f8ee524fb (patch)
treefc65a6c40fa719f9d43be9e0e15be79c490135e0 /src/control/Transmission.h
parentfinished CPhysical (diff)
downloadre3-53023eb65bdcde43e341c1ecb7cf0c7f8ee524fb.tar
re3-53023eb65bdcde43e341c1ecb7cf0c7f8ee524fb.tar.gz
re3-53023eb65bdcde43e341c1ecb7cf0c7f8ee524fb.tar.bz2
re3-53023eb65bdcde43e341c1ecb7cf0c7f8ee524fb.tar.lz
re3-53023eb65bdcde43e341c1ecb7cf0c7f8ee524fb.tar.xz
re3-53023eb65bdcde43e341c1ecb7cf0c7f8ee524fb.tar.zst
re3-53023eb65bdcde43e341c1ecb7cf0c7f8ee524fb.zip
Diffstat (limited to 'src/control/Transmission.h')
-rw-r--r--src/control/Transmission.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/control/Transmission.h b/src/control/Transmission.h
deleted file mode 100644
index 686e0aca..00000000
--- a/src/control/Transmission.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#pragma once
-
-struct tGear
-{
- float fMaxVelocity;
- float fShiftUpVelocity;
- float fShiftDownVelocity;
-};
-
-class cTransmission
-{
-public:
- // Gear 0 is reverse, 1-5 are forward
- tGear Gears[6];
- char nDriveType;
- char nEngineType;
- int8 nNumberOfGears;
- uint8 Flags;
- float fEngineAcceleration;
- float fMaxVelocity;
- float fUnkMaxVelocity;
- float fMaxReverseVelocity;
- float field_5C;
-
- void InitGearRatios(void);
-};