1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-09 12:17:45 +00:00
sapphire/src/servers/sapphire_zone/Zone/InstanceContent.h
2018-01-28 13:52:53 +01:00

22 lines
360 B
C++

#ifndef SAPPHIRE_INSTANCECONTENT_H
#define SAPPHIRE_INSTANCECONTENT_H
#include "Zone.h"
#include "Forwards.h"
namespace Core
{
class InstanceContent : public Zone
{
public:
InstanceContent( uint32_t instanceContentId, uint32_t guid );
virtual ~InstanceContent();
private:
Event::DirectorPtr m_pDirector;
};
}
#endif //SAPPHIRE_INSTANCECONTENT_H