This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
YimMenu/src/services/vehicle/handling_profile.hpp

19 lines
313 B
C++
Raw Normal View History

#pragma once
#include "vehicle/CVehicle.hpp"
namespace big
{
class handling_profile final
{
public:
handling_profile(CVehicle* vehicle);
handling_profile() = default;
void apply_to(CVehicle* vehicle, bool restore_hash = true) const;
private:
float m_gravity;
CHandlingData m_handling_data;
};
}