summary refs log tree commit diff stats
path: root/src/components/droppable.h
blob: 83fcb9d16a697ed7ac5844d713813c66e0926d58 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef DROPPABLE_H_5DB254EF
#define DROPPABLE_H_5DB254EF

#include "component.h"

class DroppableComponent : public Component {
  public:
    void setDroppable(bool can);
    bool isDroppable() const;

  private:
    bool droppable = false;
};

#endif /* end of include guard: DROPPABLE_H_5DB254EF */