mirror of
https://github.com/hyprwm/hyprcursor.git
synced 2024-11-17 02:35:57 +01:00
17 lines
312 B
C
17 lines
312 B
C
#include <cairo/cairo.h>
|
|
|
|
#ifndef HYPRCURSOR_SHARED_H
|
|
#define HYPRCURSOR_SHARED_H
|
|
|
|
/*!
|
|
struct for a single cursor image
|
|
*/
|
|
struct SCursorImageData {
|
|
cairo_surface_t* surface;
|
|
int size;
|
|
int delay;
|
|
};
|
|
|
|
typedef struct SCursorImageData hyprcursor_cursor_image_data;
|
|
|
|
#endif
|