mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
16 lines
226 B
C++
16 lines
226 B
C++
#ifndef SHARED_CURSOR_VIEW_H
|
|
#define SHARED_CURSOR_VIEW_H
|
|
|
|
#include <escher.h>
|
|
|
|
namespace Shared {
|
|
|
|
class CursorView : public View {
|
|
public:
|
|
virtual void setCursorFrame(KDRect frame) { View::setFrame(frame); }
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|