#ifndef __button_h__ #define __button_h__ // Structs typedef struct buttonStruct { SDL_Rect TargetRect; void (*OnClick)(); }; // End Structs // Prototypes // End Prototypes #endif