/**
* @module COLLIDER_TYPES
*/
/**
* The 'dynamic' collider type.
* @type {'DYNAMIC'}
* @constant
*
* @memberof module:COLLIDER_TYPES
*/
const DYNAMIC = 'DYNAMIC';
/**
* The 'kinetic' collider type.
* @type {'KINETIC'}
* @constant
*
* @memberof module:COLLIDER_TYPES
*/
const KINETIC = 'KINETIC';
/**
* The 'static' collider type.
* @type {'STATIC'}
* @constant
*
* @memberof module:COLLIDER_TYPES
*/
const STATIC = 'STATIC';
export {
DYNAMIC,
KINETIC,
STATIC
};