Fixed modularity issues

This commit is contained in:
Rendo 2026-03-10 16:13:58 +05:00
commit 7fe086a477
2 changed files with 43 additions and 52 deletions

View file

@ -1,3 +1,6 @@
#ifndef COMPONENTS_H
#define COMPONENTS_H
#include <raylib.h>
#include <raymath.h>
@ -21,3 +24,5 @@ class Pacman : IComponent {
~Pacman();
virtual void process();
};
#endif