mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-09 12:17:45 +00:00
22 lines
360 B
C++
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
|