sdl-dropfile-test/include/drop_area.h
2024-01-08 00:16:47 +00:00

18 lines
345 B
C

#ifndef DROP_AREA_H
#define DROP_AREA_H
#include "colour.h"
#include "window.h"
#include <stdbool.h>
typedef struct {
render_rect_t rect;
colour_t border_colour;
bool mouseover;
} drop_area_t;
void init_drop_area(window_t *wnd, drop_area_t *area, render_rect_t rect,
colour_t border_colour);
#endif // !DROP_AREA_H