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