mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-05 10:17:46 +00:00
17 lines
314 B
C++
17 lines
314 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 );
|
|
};
|
|
|
|
}
|
|
|
|
#endif //SAPPHIRE_INVENTORYMGR_H
|