breakout/button.h

15 lines
194 B
C
Raw Normal View History

2018-01-16 12:10:37 +01:00
#ifndef __button_h__
#define __button_h__
// Structs
typedef struct buttonStruct {
SDL_Rect TargetRect;
void (*OnClick)();
2018-01-18 15:20:01 +01:00
} Button;
2018-01-16 12:10:37 +01:00
// End Structs
// Prototypes
// End Prototypes
#endif