cursetree/src/surface.h

13 lines
237 B
C
Raw Normal View History

#ifndef _CURSETREE_SURFACE_H
#define _CURSETREE_SURFACE_H
2025-09-27 20:46:05 +10:00
#include "_ct_shared.h"
typedef struct ct_surface {
pos x, y, w, h;
2025-09-27 20:46:05 +10:00
glyph **buf;
pos vcx, vcy; /* virtual cursor position */
} surface;
#endif /* _CURSETREE_SURFACE_H */