You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
368 B
C++

#include "qw_abstractlevelevent.h"
QWAbstractLevelEvent:: QWAbstractLevelEvent()
{}
QWAbstractLevelEvent::~QWAbstractLevelEvent()
{}
////////////////////////
void QWAbstractLevelEvent::setLevelBuilder(QWLevelBuilder *const buil) noexcept
{
ptr_builder = buil;
}
QWLevelBuilder *QWAbstractLevelEvent::levelBuilder() const noexcept
{
return ptr_builder;
}