quest-wizard/models/events/qw_abstractinventoryevent.cpp

21 lines
414 B
C++
Raw Normal View History

2023-02-09 08:41:24 -05:00
#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;
}