Skip to content

Commit

Permalink
ECS: Fix include
Browse files Browse the repository at this point in the history
  • Loading branch information
Saverio976 committed Oct 31, 2023
1 parent 7e98e9f commit c970101
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
** unloadRaylib
*/

#include "Raylib.hpp"
#include "Registry.hpp"
#include <cstddef>
#include "B-luga-graphics/Raylib/Raylib.hpp"
#include "B-luga/Registry.hpp"

static void unloadSounds(std::size_t id)
{
Expand Down
28 changes: 28 additions & 0 deletions scripts/test-all.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,46 @@

cd ./libs

ls

cd ./B-luga
echo "-----------------------------------------------------------------------"
echo "-----------------------------------------------------------------------"
echo "BLUGA"
echo "-----------------------------------------------------------------------"
echo "-----------------------------------------------------------------------"
./scripts/test.ps1

echo "-----------------------------------------------------------------------"
echo "-------------------------- CD .. --------------------------------------"
echo "-----------------------------------------------------------------------"
cd ..
ls

echo "-----------------------------------------------------------------------"
echo "-------------------------- CD GRAPHICS --------------------------------"
echo "-----------------------------------------------------------------------"
cd ./B-luga-graphics
echo "-----------------------------------------------------------------------"
echo "-----------------------------------------------------------------------"
echo "BLUGA-GRAPHICS"
echo "-----------------------------------------------------------------------"
echo "-----------------------------------------------------------------------"
./scripts/test.ps1

echo "-----------------------------------------------------------------------"
echo "-------------------------- CD .. --------------------------------------"
echo "-----------------------------------------------------------------------"
cd ..
ls

echo "-----------------------------------------------------------------------"
echo "-------------------------- CD PHYSICS ---------------------------------"
echo "-----------------------------------------------------------------------"
cd ./B-luga-physics
echo "-----------------------------------------------------------------------"
echo "-----------------------------------------------------------------------"
echo "BLUGA-PHYSICS"
echo "-----------------------------------------------------------------------"
echo "-----------------------------------------------------------------------"
./scripts/test.ps1

0 comments on commit c970101

Please sign in to comment.