This repository has been archived on 2020-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
DSem1/walky/main.cpp
2018-06-05 16:55:45 +02:00

19 lines
240 B
C++

#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();
}