Housing: Fix DB2 struct field ordering for ExteriorComponent entries
This commit is contained in:
@@ -5433,9 +5433,9 @@ struct WarbandSceneSourceInfoEntry
|
||||
|
||||
struct ExteriorComponentEntry
|
||||
{
|
||||
uint32 ID;
|
||||
LocalizedString Name;
|
||||
std::array<float, 3> Position;
|
||||
uint32 ID;
|
||||
uint8 Type;
|
||||
int32 FileDataID;
|
||||
int32 ConditionID;
|
||||
@@ -5450,16 +5450,16 @@ struct ExteriorComponentEntry
|
||||
|
||||
struct ExteriorComponentExitPointEntry
|
||||
{
|
||||
uint32 ID;
|
||||
std::array<float, 3> Position;
|
||||
std::array<float, 3> Rotation;
|
||||
uint32 ID;
|
||||
uint32 ExteriorComponentID; // ParentIndexField - must be unsigned
|
||||
};
|
||||
|
||||
struct ExteriorComponentGroupEntry
|
||||
{
|
||||
uint32 ID;
|
||||
std::array<float, 3> Position;
|
||||
uint32 ID;
|
||||
uint32 ExteriorComponentID; // ParentIndexField - must be unsigned
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user