refactor!: Replace premake5 with CMake. (#551)

Co-authored-by: tupoy-ya <tupoy-ya@users.noreply.github.com>
This commit is contained in:
tupoy-ya
2022-11-08 21:08:58 +00:00
committed by GitHub
parent 146c2b8ce8
commit 1087146e56
340 changed files with 19298 additions and 19449 deletions

View 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)
}