Install required libraries:
sudo dnf install raylib raylib-develInstalls Raylib and its development headers.
Compile the project:
g++ flow.cpp RealVector.cpp config.cpp particle.cpp -o flow -lraylib -lGL -lm -ldl -lpthread -lrt -lX11Compiles the project and links necessary libraries.
Run the program:
./flow