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.
quest-wizard/models/events/qw_abstractinventoryevent.cpp

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;
}