21 lines
414 B
C++
21 lines
414 B
C++
#include "qw_abstractinventoryevent.h"
|
|
|
|
QWAbstractInventoryEvent:: QWAbstractInventoryEvent()
|
|
{}
|
|
|
|
QWAbstractInventoryEvent::~QWAbstractInventoryEvent()
|
|
{}
|
|
|
|
////////////////////////
|
|
|
|
void QWAbstractInventoryEvent::setInventoryManager(QWInventoryManager *const inv) noexcept
|
|
{
|
|
ptr_inventory = inv;
|
|
}
|
|
|
|
QWInventoryManager *QWAbstractInventoryEvent::inventoryManager() const noexcept
|
|
{
|
|
return ptr_inventory;
|
|
}
|
|
|