Add drop_area_t

This commit is contained in:
2024-01-08 00:16:47 +00:00
parent 2fce90f0f3
commit 66abe8585c
2 changed files with 71 additions and 0 deletions

17
include/drop_area.h Normal file
View File

@@ -0,0 +1,17 @@
#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