Skip to content

Commit

Permalink
ALTV-426 - move AABB class to own file
Browse files Browse the repository at this point in the history
  • Loading branch information
Doxoh committed Oct 31, 2024
1 parent 3f587a8 commit 5a0a6c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion c-api/interior_room.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ void InteriorRoom_SetExtents(uint32_t interiorId, uint32_t roomValue, uint8_t is
position_t max)
{
auto room = GetInteriorRoom(interiorId, roomValue, isIndex);
alt::IInterior::AABB extentInfo;
alt::AABB extentInfo;
extentInfo.min = alt::Position(min.x, min.y, min.z);
extentInfo.max = alt::Position(max.x, max.y, max.z);
room->SetExtents(extentInfo);
Expand Down

0 comments on commit 5a0a6c8

Please sign in to comment.