project-kyoku/notesprites/notegraphicsentity.cpp

16 lines
241 B
C++
Raw Normal View History

#include "notegraphicsentity.h"
NoteGraphicsEntity::NoteGraphicsEntity() :
_attached(false)
{}
void NoteGraphicsEntity::attach() noexcept
{
_attached = true;
}
void NoteGraphicsEntity::detach() noexcept
{
_attached = false;
}