arcade-physics
Version:
Use Arcade Physics without Phaser.
20 lines • 688 B
TypeScript
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2020 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Removes a single item from an array and returns it without creating gc, like the native splice does.
* Based on code by Mike Reinstein.
*
* @function Phaser.Utils.Array.SpliceOne
* @since 3.0.0
*
* @param {array} array - The array to splice from.
* @param {number} index - The index of the item which should be spliced.
*
* @return {*} The item which was spliced (removed).
*/
declare const SpliceOne: (array: any, index: any) => any;
export { SpliceOne };
//# sourceMappingURL=SpliceOne.d.ts.map