You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 22, 2022. It is now read-only.
* @description Lua collision-detection library for axis-aligned rectangles
* @link https://github.com/kikito/bump.lua
* @version 3.1.7
* @author kikito
* @license MIT
*/
namespace bump {
/**
* Creating a bump collision world
* @param cell_size An optional number defaults to 64, representing the size of the sides of the (squared) cells that will be used internally to provide the data
* @noSelf
*/
function newWorld(cell_size?: number): import("./BumpWorld").BumpWorld