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

30 lines
511 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( uint16_t territoryId, uint32_t guId, const std::string& internalName, const std::string& placeName );
virtual ~InstanceContent();
private:
2018-01-28 13:52:53 +01:00
Event::DirectorPtr m_pDirector;
};
}
#endif //SAPPHIRE_INSTANCECONTENT_H