mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-28 07:07:45 +00:00
23 lines
353 B
C
23 lines
353 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:
|
||
|
DirectorPtr m_pDirector;
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|
||
|
#endif //SAPPHIRE_INSTANCECONTENT_H
|