14 lines
267 B
C++
14 lines
267 B
C++
#include "pinned_photo.h"
|
|
#include "macros.h"
|
|
|
|
void PinnedPhoto::_bind_methods() {
|
|
BIND_PROPERTY(Variant::BOOL, can_drop);
|
|
}
|
|
|
|
void PinnedPhoto::set_can_drop(bool value) {
|
|
this->can_drop = value;
|
|
}
|
|
|
|
bool PinnedPhoto::get_can_drop() const {
|
|
return this->can_drop;
|
|
}
|