aboutsummaryrefslogtreecommitdiff
path: root/Src/Wasabi/api/wnd/fakedrag.h
blob: 4262f8b8b264c4a5fbdbf94cc66c9bd781b023f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _FAKEDRAG_H
#define _FAKEDRAG_H

#include <api/wnd/basewnd.h>

class FakeDragWnd : public BaseWnd {
public:
  FakeDragWnd() { dragging = 1; }
  ~FakeDragWnd() { dragging = 0; }
};

#endif