gitextract_wwlh0ody/ ├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── CodeGuide.md ├── GalaxyEngine/ │ ├── Config/ │ │ └── config.txt │ ├── Shaders/ │ │ ├── bloom.fs │ │ ├── cubemap.fs │ │ ├── cubemap.vs │ │ ├── skybox.fs │ │ └── skybox.vs │ ├── fonts/ │ │ ├── Unispace Bd.otf │ │ ├── Unispace Rg.otf │ │ └── binary_to_compressed_c.cpp │ ├── include/ │ │ ├── IO/ │ │ │ └── io.h │ │ ├── Particles/ │ │ │ ├── QueryNeighbors.h │ │ │ ├── clusterMouseHelper.h │ │ │ ├── densitySize.h │ │ │ ├── neighborSearch.h │ │ │ ├── particle.h │ │ │ ├── particleColorVisuals.h │ │ │ ├── particleDeletion.h │ │ │ ├── particleSelection.h │ │ │ ├── particleSpaceship.h │ │ │ ├── particleSubdivision.h │ │ │ ├── particleTrails.h │ │ │ └── particlesSpawning.h │ │ ├── Physics/ │ │ │ ├── SPH.h │ │ │ ├── SPH3D.h │ │ │ ├── constraint.h │ │ │ ├── field.h │ │ │ ├── light.h │ │ │ ├── materialsSPH.h │ │ │ ├── morton.h │ │ │ ├── physics.h │ │ │ ├── physics3D.h │ │ │ ├── quadtree.h │ │ │ └── slingshot.h │ │ ├── Renderer/ │ │ │ └── rayMarching.h │ │ ├── Sound/ │ │ │ └── sound.h │ │ ├── UI/ │ │ │ ├── UI.h │ │ │ ├── brush.h │ │ │ ├── controls.h │ │ │ └── rightClickSettings.h │ │ ├── UX/ │ │ │ ├── camera.h │ │ │ ├── copyPaste.h │ │ │ ├── randNum.h │ │ │ ├── saveSystem.h │ │ │ └── screenCapture.h │ │ ├── globalLogic.h │ │ ├── parameters.h │ │ └── pch.h │ └── src/ │ ├── Particles/ │ │ ├── particleSelection.cpp │ │ ├── particleSubdivision.cpp │ │ ├── particleTrails.cpp │ │ └── particlesSpawning.cpp │ ├── Physics/ │ │ ├── SPH.cpp │ │ ├── SPH3D.cpp │ │ ├── light.cpp │ │ ├── morton.cpp │ │ ├── physics.cpp │ │ ├── physics3D.cpp │ │ ├── quadtree.cpp │ │ └── slingshot.cpp │ ├── Sound/ │ │ └── sound.cpp │ ├── UI/ │ │ ├── UI.cpp │ │ ├── brush.cpp │ │ ├── controls.cpp │ │ └── rightClickSettings.cpp │ ├── UX/ │ │ ├── camera.cpp │ │ ├── randNum.cpp │ │ ├── saveSystem.cpp │ │ └── screenCapture.cpp │ ├── globalLogic.cpp │ ├── main.cpp │ ├── parameters.cpp │ └── resources.rc ├── LICENSE ├── README.md └── cmake/ ├── ffmpeg.cmake ├── glm.cmake ├── imgui.cmake ├── openmp.cmake ├── raylib.cmake └── yaml.cmake