15 lines
194 B
C
15 lines
194 B
C
#ifndef __button_h__
|
|
#define __button_h__
|
|
|
|
// Structs
|
|
typedef struct buttonStruct {
|
|
SDL_Rect TargetRect;
|
|
void (*OnClick)();
|
|
} Button;
|
|
// End Structs
|
|
|
|
// Prototypes
|
|
// End Prototypes
|
|
|
|
#endif
|