mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-18 07:07:32 +08:00
19 lines
314 B
C++
19 lines
314 B
C++
#pragma once
|
|
#include "common.hpp"
|
|
|
|
namespace big
|
|
{
|
|
class vehicle_service
|
|
{
|
|
public:
|
|
vehicle_service();
|
|
~vehicle_service();
|
|
|
|
int attempt_save();
|
|
bool restore_vehicle();
|
|
private:
|
|
inline static std::unordered_map<Hash, CHandlingData> m_handling_backup;
|
|
};
|
|
|
|
inline vehicle_service* g_vehicle_service;
|
|
} |