mirror of
https://github.com/ClusterM/fdskey.git
synced 2025-12-16 19:15:54 +01:00
16 lines
358 B
C
16 lines
358 B
C
#include "cogs.h"
|
|
#include "medium_cursor.h"
|
|
#include "../images.h"
|
|
|
|
const DotMatrixImage IMAGE_COGS = {
|
|
.width = IMAGE_COGS_WIDTH,
|
|
.height = IMAGE_COGS_HEIGHT,
|
|
.image_data = image_cogs
|
|
};
|
|
|
|
const DotMatrixImage IMAGE_MEDIUM_CURSOR = {
|
|
.width = IMAGE_MEDIUM_CURSOR_WIDTH,
|
|
.height = IMAGE_MEDIUM_CURSOR_HEIGHT,
|
|
.image_data = image_medium_cursor
|
|
};
|