l2-unlegits/l2ooghelper/packet_handlers/ph_InventoryUpdate.cpp
2012-02-01 05:25:08 +00:00

10 lines
255 B
C++

#include "stdafx.h"
#include "Logger.h"
#include "L2Client.h"
void L2Client::ph_InventoryUpdate( class L2Client *pcls, L2GamePacket *p )
{
pcls->inv.parse_InventoryUpdate( p, pcls->account.getL2Version() );
pcls->postUpdateUI( UPDATE_INV );
}