mirror of
https://github.com/smallmain/cocos-enhance-kit.git
synced 2025-01-14 06:51:08 +00:00
19 lines
382 B
C
19 lines
382 B
C
#pragma once
|
|
|
|
enum class b2ObjectType
|
|
{
|
|
CONTACT,
|
|
CIRCLE_SHAPE,
|
|
EDGE_SHAPE,
|
|
POLYGON_SHAPE,
|
|
CHAIN_SHAPE,
|
|
FIXTURE,
|
|
JOIN,
|
|
BODY
|
|
};
|
|
|
|
typedef void (*b2ObjectDestroyNotifer)(void*, b2ObjectType, const char*);
|
|
|
|
void b2SetObjectDestroyNotifier(b2ObjectDestroyNotifer notifier);
|
|
void b2NotifyObjectDestroyed(void* obj, b2ObjectType type, const char* typeName);
|