Roughed in some basic pathfinding, adapted from CitySim's

This commit is contained in:
2019-10-24 13:30:30 -05:00
parent cc040f718b
commit 75a03a7155
8 changed files with 265 additions and 27 deletions

8
lib/pathfinder.rb Normal file
View File

@@ -0,0 +1,8 @@
class IMICRTS
class Pathfinder
end
end
Dir.glob("#{IMICRTS::GAME_ROOT_PATH}/lib/pathfinding/*.rb").each do |pathing_method|
require_relative pathing_method
end