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

30 lines
454 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:
2018-01-28 22:36:43 +01:00
enum InstanceContentState
{
Created,
DutyStarted,
DutyFinished
};
InstanceContent( uint32_t instanceContentId, uint32_t guid );
virtual ~InstanceContent();
private:
2018-01-28 13:52:53 +01:00
Event::DirectorPtr m_pDirector;
};
}
#endif //SAPPHIRE_INSTANCECONTENT_H