diff options
author | Roman Masanin <36927roma@gmail.com> | 2020-09-22 18:32:05 +0200 |
---|---|---|
committer | Roman Masanin <36927roma@gmail.com> | 2020-09-22 18:32:05 +0200 |
commit | b2e3d90734b46b36dce0a0fe3b4dd278168b6de2 (patch) | |
tree | ac0a593c5bb0e18276b4432c9f2ea2be7333495a /src/render | |
parent | rewisited: (diff) | |
download | re3-b2e3d90734b46b36dce0a0fe3b4dd278168b6de2.tar re3-b2e3d90734b46b36dce0a0fe3b4dd278168b6de2.tar.gz re3-b2e3d90734b46b36dce0a0fe3b4dd278168b6de2.tar.bz2 re3-b2e3d90734b46b36dce0a0fe3b4dd278168b6de2.tar.lz re3-b2e3d90734b46b36dce0a0fe3b4dd278168b6de2.tar.xz re3-b2e3d90734b46b36dce0a0fe3b4dd278168b6de2.tar.zst re3-b2e3d90734b46b36dce0a0fe3b4dd278168b6de2.zip |
Diffstat (limited to 'src/render')
-rw-r--r-- | src/render/Fluff.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/render/Fluff.h b/src/render/Fluff.h index 0fc57c73..5a4458a8 100644 --- a/src/render/Fluff.h +++ b/src/render/Fluff.h @@ -90,15 +90,15 @@ class CEscalator CVector m_pos2; CVector m_pos3; CMatrix m_matrix; - bool m_bIsActive; bool m_bIsMovingDown; int32 m_stepsCount; float m_lowerEnd; float m_upperEnd; - CVector m_midPoint; float m_radius; CObject *m_pSteps[24]; public: + bool m_bIsActive;//TODO also recheck! + CVector m_midPoint; CEscalator(); void Update(void); void SwitchOff(void); @@ -107,8 +107,8 @@ public: class CEscalators { - static CEscalator aEscalators[NUM_ESCALATORS]; public: + static CEscalator aEscalators[NUM_ESCALATORS];//TODO need recheck this! static int32 NumEscalators; static void Init(void); static void Update(void); |