Skip to content

DanielEliasib/entt_asteroids

Repository files navigation

entt_asteroids

asteroids

An ecs asteroids prototype implemented using EnTT and Raylib.

This is a learning exercise to learn how to use EnTT and Raylib.

Still a work in progress, a lot of optimization needed.

Screenshots

title

death

score

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).