enum class ParticleTopology_t : uint32
{
    // MPropertyFriendlyName = Points
    PARTICLE_TOPOLOGY_POINTS = 0,
    // MPropertyFriendlyName = Line segments
    PARTICLE_TOPOLOGY_LINES = 1,
    // MPropertyFriendlyName = Triangles
    PARTICLE_TOPOLOGY_TRIS = 2,
    // MPropertyFriendlyName = Quadrilaterals
    PARTICLE_TOPOLOGY_QUADS = 3,
    // MPropertyFriendlyName = Cubes
    PARTICLE_TOPOLOGY_CUBES = 4,
};