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