MCPcopy Create free account
hub / github.com/OpenImageDebugger/OpenImageDebugger / post_initialize

Method post_initialize

src/visualization/game_object.cpp:60–65  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

58}
59
60bool GameObject::post_initialize() const {
61 return std::ranges::all_of(all_components_, [](const auto& comp) {
62 const auto& [name, component] = comp;
63 return component->post_initialize();
64 });
65}
66
67void GameObject::update() const {
68 for (const auto& comp : all_components_ | std::views::values) {

Callers 1

initializeMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected