Simple Nano Circuit 0.0.2
SDLHelper.h
1#ifndef _SDLHelper_H_
2#define _SDLHelper_H_
3
4#include <SDL.h>
5
6namespace SDLHelper
7{
10 bool SDL_RectsOverlap( const SDL_Rect& , const SDL_Rect& );
11
13 bool SDL_RectsEq(const SDL_Rect& , const SDL_Rect& );
14
16 bool SDL_PointInRect(const SDL_Point&, const SDL_Rect&);
17
19 bool SDL_PointsEq(const SDL_Point&, const SDL_Point&);
20}
21
22#endif