cursetree/src/surface.h

12 lines
236 B
C

#ifndef _CURSETREE_SURFACE_H
#define _CURSETREE_SURFACE_H
#include "ct_shared.h"
typedef struct ct_surface {
pos x, y, w, h;
glyph **buf;
pos vcx, vcy; /* virtual cursor position */
} surface;
#endif /* _CURSETREE_SURFACE_H */