From 5353bc188d4660b344e3c93d694afd529c7096b5 Mon Sep 17 00:00:00 2001 From: Bigjango13 Date: Thu, 8 Feb 2024 19:33:44 -0500 Subject: [PATCH] Rename Entity::aabb to Entity::hitbox --- symbols/src/entity/Entity.def | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/symbols/src/entity/Entity.def b/symbols/src/entity/Entity.def index 7a05c4e..29c3181 100644 --- a/symbols/src/entity/Entity.def +++ b/symbols/src/entity/Entity.def @@ -31,7 +31,7 @@ property float yaw = 0x40; property float pitch = 0x44; property float old_yaw = 0x48; property float old_pitch = 0x4c; -property AABB aabb = 0x50; +property AABB hitbox = 0x50; property int renderer_id = 0xa8; property bool on_ground = 0xb2; property bool freeze_physics = 0xb9;