added walky

This commit is contained in:
k-a-z-u
2018-06-05 16:55:45 +02:00
parent 4563391938
commit 267aed29b0
9 changed files with 1695 additions and 0 deletions

18
walky/main.cpp Normal file
View File

@@ -0,0 +1,18 @@
#include <unistd.h>
#include <string>
#include "file.h"
//#include "ParticleWalk.h"
#include "ParticleWalkNavMesh.h"
int main(void) {
// let gnuplot write outputs to here
chdir("/tmp/gp");
ParticleWalkNavMesh walk; walk.run();
}