MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / allocNotify

Method allocNotify

Engine/source/console/simObject.cpp:1692–1701  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1690//-----------------------------------------------------------------------------
1691
1692SimObject::Notify *SimObject::allocNotify()
1693{
1694 if(mNotifyFreeList)
1695 {
1696 SimObject::Notify *ret = mNotifyFreeList;
1697 mNotifyFreeList = ret->next;
1698 return ret;
1699 }
1700 return notifyChunker.alloc();
1701}
1702
1703//-----------------------------------------------------------------------------
1704

Callers

nothing calls this directly

Calls 1

allocMethod · 0.45

Tested by

no test coverage detected