Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SM_ClientObjectInfo.h « include « Fuzzics « Sumo « Physics « gameengine « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2063892e6719c0f731ca7fd76a096f7ee89fc71c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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