Useful Code Files: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
(use official sdk links) |
||
(2 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
* [https://github.com/ | * [https://github.com/ValveSoftware/source-sdk-2013/blob/master/src/public/const.h const.h] | ||
* [https://github.com/ | * [https://github.com/ValveSoftware/source-sdk-2013/blob/master/src/game/shared/tf/tf_shareddefs.h tf_shareddefs.h] | ||
* [https://github.com/ | * [https://github.com/ValveSoftware/source-sdk-2013/blob/master/src/game/shared/tf/tf_shareddefs.cpp tf_shareddefs.cpp] | ||
* [https://github.com/ValveSoftware/source-sdk-2013/blob/master/src/public/dt_common.h dt_common.h] | |||
SendProps (CNetwork*) are defined in entity header files (.h); DataMaps are defined in the entity code files (.cpp). | SendProps (CNetwork*) are defined in entity header files (.h); DataMaps (DEFINE*) are defined in the entity code files (.cpp). | ||
(Some entities will have a copy of the same variable as both a SendProp and DataMap.) | (Some entities will have a copy of the same variable as both a SendProp and DataMap.) | ||
* [https://github.com/ | * [https://github.com/ValveSoftware/source-sdk-2013/blob/master/src/public/datamap.h datamap.h] | ||
* [https://github.com/ | * [https://github.com/ValveSoftware/source-sdk-2013/blob/master/src/public/networkvar.h networkvar.h] |
Latest revision as of 16:39, 28 March 2025
SendProps (CNetwork*) are defined in entity header files (.h); DataMaps (DEFINE*) are defined in the entity code files (.cpp).
(Some entities will have a copy of the same variable as both a SendProp and DataMap.)