MCPcopy Create free account
hub / github.com/OGSR/OGSR-Engine / SRemoveOfflinePredicate

Class SRemoveOfflinePredicate

ogsr_engine/xrGame/visual_memory_manager.cpp:41–52  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39#endif // MASTER_GOLD
40
41struct SRemoveOfflinePredicate
42{
43 bool operator()(const CVisibleObject& object) const
44 {
45 return (!object.m_object || !!object.m_object->getDestroy() || object.m_object->H_Parent());
46 }
47
48 bool operator()(const CNotYetVisibleObject& object) const
49 {
50 return (!object.m_object || !!object.m_object->getDestroy() || object.m_object->H_Parent());
51 }
52};
53
54struct CVisibleObjectPredicate
55{

Callers 1

updateMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected