Category:Classes: Difference between revisions
Jump to navigation
Jump to search
TomEdwards (talk | contribs) No edit summary |
TomEdwards (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
A C++ '''[[Wikipedia:C++ classes|class]]''' is a blueprint from which actual "objects" are "instanced" at run-time. Every [[npc_combine_s]] object is an instance of the <code>[[CNPC_CombineS]]</code> class, for example. | A C++ '''[[Wikipedia:C++ classes|class]]''' is a blueprint from which actual "objects" are "instanced" at run-time. Every [[npc_combine_s]] object is an instance of the <code>[[CNPC_CombineS]]</code> class, for example. | ||
When a class can be evaluated (e.g. equals, greater than, less than...) it becomes | * When a class can be evaluated (e.g. equals, greater than, less than...) it becomes a [[:Category:Variables|variable]]. | ||
* If a class is designed to be accessed by the engine, it becomes an [[:Category:Interfaces|interface]]. | |||
[[Category:Programming]] | [[Category:Programming]] |
Revision as of 15:16, 5 August 2009
A C++ class is a blueprint from which actual "objects" are "instanced" at run-time. Every npc_combine_s object is an instance of the CNPC_CombineS
class, for example.
Pages in category "Classes"
The following 23 pages are in this category, out of 23 total.