diff --git a/include/bedrock/world/actor/actor.h b/include/bedrock/world/actor/actor.h index 8d53ce335..2cdc3a1cc 100644 --- a/include/bedrock/world/actor/actor.h +++ b/include/bedrock/world/actor/actor.h @@ -276,27 +276,28 @@ class Actor { static Actor *tryGetFromEntity(EntityContext const &, bool include_removed); protected: - EntityContext entity_context_; // +8 - std::array unknown3_; // +32 - std::string custom_init_event_name_; // +192 - ActorInitializationMethod init_method_; // +224 - bool force_init_method_to_spawn_on_reload_; // +225 - bool added_; // +226 - ActorDefinitionGroup *definitions_; // +232 - std::unique_ptr current_description_; // +240 - std::shared_ptr leash_rope_system_; // +248 - std::string unknown6_; // +264 - char unknown7_[72]; // +296 - std::map>> unknown8_; // +368 - SynchedActorDataEntityWrapper entity_data_; // +384 - std::unique_ptr network_data_; // +432 - Vec3 sent_delta_; // +440 - char unknown11_[92]; // +452 - WeakRef dimension_; // +544 - Level *level_; // +560 - HashedString actor_renderer_id_; // +568 - ActorCategory categories_; // +616 - BuiltInActorComponents built_in_components_; // +624 + EntityContext entity_context_; // +8 + std::array init_params_; // +32 + std::string custom_init_event_name_; // +192 + ActorInitializationMethod init_method_; // +224 + bool force_init_method_to_spawn_on_reload_; // +225 + bool added_; // +226 + ActorDefinitionGroup *definitions_; // +232 + std::unique_ptr current_description_; // +240 + std::shared_ptr leash_rope_system_; // +248 + std::string alias_; // +264 + std::optional previous_render_transform_; // +296 + int last_hurt_by_player_time_; // +364 + std::map>> previous_bone_matrices_; // +368 + SynchedActorDataEntityWrapper entity_data_; // +384 + std::unique_ptr network_data_; // +432 + Vec3 sent_delta_; // +440 + char unknown11_[92]; // +452 + WeakRef dimension_; // +544 + Level *level_; // +560 + HashedString actor_renderer_id_; // +568 + ActorCategory categories_; // +616 + BuiltInActorComponents built_in_components_; // +624 // ... public: