This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/source/gameengine/Physics/Sumo/Fuzzics/include/SM_ClientObjectInfo.h
Hans Lambermont 12315f4d0e Initial revision
2002-10-12 11:37:38 +00:00

16 lines
350 B
C++

#ifndef __SM_CLIENTOBJECT_INFO_H
#define __SM_CLIENTOBJECT_INFO_H
/**
* Client Type and Additional Info. This structure can be use instead of a bare void* pointer, for safeness, and additional info for callbacks
*/
struct SM_ClientObjectInfo
{
int m_type;
void* m_clientobject;
void* m_auxilary_info;
};
#endif //__SM_CLIENTOBJECT_INFO_H