mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-19 05:40:38 +01:00
7 lines
148 B
C++
7 lines
148 B
C++
#include "cursor_view.h"
|
|
|
|
void CursorView::drawRect(KDRect rect) const {
|
|
KDColor cursorColor = KDColorRed;
|
|
KDFillRect(rect, &cursorColor, 1);
|
|
}
|