mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-02 16:57:47 +00:00
19 lines
370 B
C
19 lines
370 B
C
![]() |
#ifndef SAPPHIRE_INVENTORYMGR_H
|
||
|
#define SAPPHIRE_INVENTORYMGR_H
|
||
|
|
||
|
#include "ForwardsZone.h"
|
||
|
|
||
|
namespace Sapphire::World::Manager
|
||
|
{
|
||
|
|
||
|
class InventoryMgr
|
||
|
{
|
||
|
public:
|
||
|
void sendInventoryContainer( Sapphire::Entity::Player& player, Sapphire::ItemContainerPtr container,
|
||
|
uint32_t sequence = 0 );
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif //SAPPHIRE_INVENTORYMGR_H
|