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/BigBaseV2/src/services/vehicle_service.hpp

19 lines
314 B
C++
Raw Normal View History

2021-08-08 15:10:08 +02:00
#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;
}