refactor!: Replace premake5 with CMake. (#551)
Co-authored-by: tupoy-ya <tupoy-ya@users.noreply.github.com>
This commit is contained in:
16
src/services/gta_data/vehicle_item.hpp
Normal file
16
src/services/gta_data/vehicle_item.hpp
Normal file
@ -0,0 +1,16 @@
|
||||
#pragma once
|
||||
|
||||
namespace big
|
||||
{
|
||||
#pragma pack(push, 4)
|
||||
class vehicle_item final
|
||||
{
|
||||
public:
|
||||
char m_name[16];
|
||||
char m_display_name[32];
|
||||
char m_display_manufacturer[32];
|
||||
char m_vehicle_class[32];
|
||||
std::uint32_t m_hash;
|
||||
};
|
||||
#pragma pack(pop)
|
||||
}
|
Reference in New Issue
Block a user