15 lines
187 B
C
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
|