2021-09-13 13:30:15 +02:00
|
|
|
/**
|
|
|
|
|
* Copyright 2021 Johannes Marbach
|
2024-01-12 09:51:43 +01:00
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
2021-09-13 13:30:15 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef BB_CURSOR_H
|
|
|
|
|
#define BB_CURSOR_H
|
|
|
|
|
|
|
|
|
|
#include "lvgl/lvgl.h"
|
|
|
|
|
|
|
|
|
|
/* Image description of the mouse cursor */
|
|
|
|
|
extern const lv_img_dsc_t bb_cursor_img_dsc;
|
|
|
|
|
|
|
|
|
|
#endif /* BB_CURSOR_H */
|