Skip to content

DanielEliasib/entt_boids

Repository files navigation

entt_boids

boids

A simple boids implementation using EnTT and Raylib.

boids-gif

This is still a work in progress, but the basic functionality is there. This is a learning exercise to learn how to use EnTT and Raylib.

Building

  • Pull the submodules: git submodule update --init --recursive
  • Build Raylib using raylib.ps1 or raylib.sh (depending on your platform).
  • Run premake: premake5 gmake2
  • Build: make

Notes

  • This project uses premake5 to generate the build files.
  • You can use this premake5 fork here to generate compile commands file.
  • This project uses Raylib for rendering (is already added as a submodule).
  • This project uses EnTT (is already in the repo).