18 lines
253 B
C
18 lines
253 B
C
|
#ifndef EVOLUMESHAPE
|
||
|
#define EVOLUMESHAPE
|
||
|
|
||
|
enum EVolumeShape
|
||
|
{
|
||
|
eNoShape,
|
||
|
eAxisAlignedBoxShape,
|
||
|
eBoxShape,
|
||
|
eEllipsoidShape,
|
||
|
eCylinderShape,
|
||
|
eCylinderLargeShape,
|
||
|
eConditionalShape,
|
||
|
eInvalidShape
|
||
|
};
|
||
|
|
||
|
#endif // EVOLUMESHAPE
|
||
|
|