1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-28 07:07:45 +00:00
sapphire/src/servers/sapphire_zone/Zone/InstanceContent.h

23 lines
353 B
C
Raw Normal View History

#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:
DirectorPtr m_pDirector;
};
}
#endif //SAPPHIRE_INSTANCECONTENT_H