summary refs log tree commit diff stats
path: root/src/components/droppable.h
blob: 1f5608b202d865b3589d1f2c6cfec0f55fd7b34c (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 */