isau
Deity
- Joined
- Jan 15, 2007
- Messages
- 3,071
Hey guys,
Throughout the SDK I see numerous methods that contain the word INLINE. Examples are:
How are these methods different from methods like:
Both seem to work. The SDK authors seem to prefer the INLINE version but the INLINE functions also don't pop up in my intellisense when typing C++ code. Is there a difference between these methods I should know about?
Thanks,
Isau
Throughout the SDK I see numerous methods that contain the word INLINE. Examples are:
Code:
getOwnerINLINE()
getGameINLINE()
How are these methods different from methods like:
Code:
getOwner()
getGame()
Both seem to work. The SDK authors seem to prefer the INLINE version but the INLINE functions also don't pop up in my intellisense when typing C++ code. Is there a difference between these methods I should know about?
Thanks,
Isau