quest-wizard/models/events/qw_abstractsoundevent.cpp

20 lines
385 B
C++
Raw Normal View History

2023-02-09 08:41:24 -05:00
#include "qw_abstractsoundevent.h"
QWAbstractSoundEvent:: QWAbstractSoundEvent()
{}
QWAbstractSoundEvent::~QWAbstractSoundEvent()
{}
////////////////////////
void QWAbstractSoundEvent::setSoundPlayer(QWSoundPlayer *const soundplayer) noexcept
{
ptr_soundplayer = soundplayer;
}
QWSoundPlayer *QWAbstractSoundEvent::soundPlayer() const noexcept
{
return ptr_soundplayer;
}