Class hierarchy: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
{{ModernConfusion|When entity name is listed it means that their c++ classname is a superclass of that category. For example <code>Env wind</code> shown under <code>CD CBaseEntity</code> doesn't mean env_wind's class is CBaseEntity, instead, it means that its c++ class, in this case CEnvWind, is superclass of CBaseEntity.}}
{{ModernConfusion|When entity name is listed it means that their c++ classname is a superclass of that category. For example <code>Env wind</code> shown under <code>CD CBaseEntity</code> doesn't mean env_wind's class is CBaseEntity, instead, it means that its c++ class, in this case CEnvWind, is superclass of CBaseEntity.}}
<categorytree mode="all">CD CBaseEntity</categorytree>
<categorytree mode="all">CD CBaseEntity</categorytree>
== See Also ==
* [[Class hierarchy (GoldSrc)]]

Revision as of 13:32, 4 August 2024

Warning.pngRisk of Confusion:When entity name is listed it means that their c++ classname is a superclass of that category. For example Env wind shown under CD CBaseEntity doesn't mean env_wind's class is CBaseEntity, instead, it means that its c++ class, in this case CEnvWind, is superclass of CBaseEntity.

See Also