diff options
Diffstat (limited to 'Src/Wasabi/api/wnd/fakedrag.h')
-rw-r--r-- | Src/Wasabi/api/wnd/fakedrag.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Src/Wasabi/api/wnd/fakedrag.h b/Src/Wasabi/api/wnd/fakedrag.h new file mode 100644 index 00000000..4262f8b8 --- /dev/null +++ b/Src/Wasabi/api/wnd/fakedrag.h @@ -0,0 +1,12 @@ +#ifndef _FAKEDRAG_H +#define _FAKEDRAG_H + +#include <api/wnd/basewnd.h> + +class FakeDragWnd : public BaseWnd { +public: + FakeDragWnd() { dragging = 1; } + ~FakeDragWnd() { dragging = 0; } +}; + +#endif |