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