breakout/button.h
2018-01-16 12:10:37 +01:00

15 lines
187 B
C

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