@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
11 lines • 299 B
TypeScript
/**
* Swaps two elements in the array
* @template T
* @param {T[]} array
* @param {number} index0
* @param {number} index1
* @returns {void}
* @see array_swap
*/
export function array_swap_one<T>(array: T[], index0: number, index1: number): void;
//# sourceMappingURL=array_swap_one.d.ts.map