mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
12 lines
209 B
C++
12 lines
209 B
C++
#ifndef APPS_CURSOR_VIEW_H
|
|
#define APPS_CURSOR_VIEW_H
|
|
|
|
#include <escher.h>
|
|
|
|
class CursorView : public View {
|
|
public:
|
|
using View::View;
|
|
void drawRect(KDContext * ctx, KDRect rect) const override;
|
|
};
|
|
|
|
#endif |