xSnapi / cpp_console_pathfinding

Very simple A* pathfinding using c++
8 stars 2 forks source link

Issue-1: unix compatible commands #2

Closed parth-sh closed 11 months ago

parth-sh commented 12 months ago

Just added and if block

ifdef _WIN32

system("pause");

else

system("read -p 'Press Enter to continue...'");

endif