MCPcopy Create free account
hub / github.com/bfbbdecomp/bfbb / FindChild

Function FindChild

src/SB/Core/x/xModel.cpp:203–215  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

201}
202
203static xModelInstance* FindChild(xModelInstance* model)
204{
205 xModelInstance* child = model->Next;
206 while (child != NULL)
207 {
208 if (child->Parent == model)
209 {
210 return child;
211 }
212 child = child->Next;
213 }
214 return NULL;
215}
216
217void xModelInstanceFree(xModelInstance* model)
218{

Callers 1

xModelInstanceFreeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected