diff options
Diffstat (limited to 'src/components/droppable.h')
| -rw-r--r-- | src/components/droppable.h | 24 |
1 files changed, 0 insertions, 24 deletions
| diff --git a/src/components/droppable.h b/src/components/droppable.h deleted file mode 100644 index 722c139..0000000 --- a/src/components/droppable.h +++ /dev/null | |||
| @@ -1,24 +0,0 @@ | |||
| 1 | #ifndef DROPPABLE_H_5DB254EF | ||
| 2 | #define DROPPABLE_H_5DB254EF | ||
| 3 | |||
| 4 | #include "component.h" | ||
| 5 | |||
| 6 | class DroppableComponent : public Component { | ||
| 7 | public: | ||
| 8 | |||
| 9 | inline bool isDroppable() const | ||
| 10 | { | ||
| 11 | return droppable_; | ||
| 12 | } | ||
| 13 | |||
| 14 | inline void setDroppable(bool can) | ||
| 15 | { | ||
| 16 | droppable_ = can; | ||
| 17 | } | ||
| 18 | |||
| 19 | private: | ||
| 20 | |||
| 21 | bool droppable_ = false; | ||
| 22 | }; | ||
| 23 | |||
| 24 | #endif /* end of include guard: DROPPABLE_H_5DB254EF */ | ||
