[saco] Rename CEntity::FUNC_1009EE90() to CEntity::ApplyTurnSpeed()

This commit is contained in:
RD42 2024-08-06 18:54:08 +08:00
parent 9f783f391a
commit a6253fc14e
2 changed files with 3 additions and 2 deletions

View File

@ -134,9 +134,10 @@ void CEntity::SetTurnSpeedVector(VECTOR Vector)
m_pEntity->vecTurnSpeed.Y = Vector.Y;
m_pEntity->vecTurnSpeed.Z = Vector.Z;
}
//-----------------------------------------------------------
void CEntity::FUNC_1009EE90()
void CEntity::ApplyTurnSpeed()
{
DWORD dwEnt = (DWORD)m_pEntity;
if(!dwEnt) return;

View File

@ -19,10 +19,10 @@ public:
void FUNC_1009ED40(float fX, float fY, float fZ); // unused
void GetTurnSpeedVector(PVECTOR Vector);
void SetTurnSpeedVector(VECTOR Vector);
void FUNC_1009EE90(); // unused
float FUNC_1009EEB0(); // unused
void FUNC_1009EEF0(PVECTOR Vector);
void FUNC_1009EF20(int a2); // unused
void ApplyTurnSpeed(); // unused
UINT GetModelIndex();
void TeleportTo(float x, float y, float z);