CLogicalEntity: Difference between revisions

From SigMod
Jump to navigation Jump to search
(Created page with "== Overview == An extension of CServerOnlyEntity, except this class supports keyvalues (e.g. targetname). Most point entities which don't need to be networked inherit from...")
 
No edit summary
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
== Overview ==
== Overview ==
An extension of [[CServerOnlyEntity]], except this class supports keyvalues (e.g. targetname). Most point entities which don't need to be networked inherit from this class (logic_case, math_counter, etc).
An extension of [[CServerOnlyEntity]]. Most point entities in Source which don't need to be networked inherit from this class (logic_case, math_counter, etc). Entities which inherit from this class have neither position nor size.


'''Source location : [https://github.com/sreechar/TF2-Source-Code/blob/master/tf2_src/game/server/baseentity.h /game/server/tf2/baseentity.h]'''
'''Source location : [https://github.com/sreechar/TF2-Source-Code/blob/master/tf2_src/game/server/baseentity.h /game/server/baseentity.h]'''


==[[Classes|Class Structure]]==
==[[Classes|Class Structure]]==
*'''[[CBaseEntity]]'''
*'''[[CBaseEntity]]'''
**'''[[CServerOnlyEntity]]'''
**'''[[CServerOnlyEntity]]'''
***'''[[CLogicalEntity]]'''
***'''CLogicalEntity'''

Latest revision as of 00:36, 26 March 2022

Overview[edit | edit source]

An extension of CServerOnlyEntity. Most point entities in Source which don't need to be networked inherit from this class (logic_case, math_counter, etc). Entities which inherit from this class have neither position nor size.

Source location : /game/server/baseentity.h

Class Structure[edit | edit source]