diff options
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1,4 +1,5 @@ #include "gameCommon.h" +#include "animation.h" #include <raylib.h> #ifndef UTIL_H @@ -7,4 +8,7 @@ // Scale from the window to render texture. Vector2 getScaledMousePosition(); +// Check pixals and that fun stuff. +bool doesCollideWithAnimation(Rectangle rect, Animation* animation, Vector2 point); + #endif |