-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package = "jumper" | ||
version = "1.6.3-1" | ||
source = { | ||
url = "https://github.com/Yonaba/Jumper/archive/jumper-1.6.3-1.tar.gz", | ||
dir = "Jumper-jumper-1.6.3-1" | ||
} | ||
description = { | ||
summary = "Fast and easy-to-use pathfinding library for 2D grid-bases games", | ||
detailed = [[ | ||
Jumper is a pathfinding library designed for uniform-cost 2D grid-based games. It features a mix of A-Star, Jump Point Search | ||
and Binary-Heaps. It aims to be fast and lightweight. It also features a clean public interface with chaining features | ||
which makes it very friendly and easy to use. | ||
]], | ||
homepage = "http://github.com/Yonaba/Jumper", | ||
license = "MIT <http://www.opensource.org/licenses/mit-license.php>" | ||
} | ||
dependencies = { | ||
"lua >= 5.1" | ||
} | ||
build = { | ||
type = "builtin", | ||
modules = { | ||
["init"] = "init.lua", | ||
["jumper"] = "jumper.lua", | ||
["core.bheap"] = "core/bheap.lua", | ||
["core.grid"] = "core/grid.lua", | ||
["core.heuristics"] = "core/heuristics.lua", | ||
["core.node"] = "core/node.lua" | ||
} | ||
} |