mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-06-06 22:53:35 +00:00
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
|
|
|