2018-09-24 23:48:42 +02:00
|
|
|
#ifndef SAPPHIRE_SPAWNGROUP_H
|
|
|
|
#define SAPPHIRE_SPAWNGROUP_H
|
|
|
|
|
|
|
|
#include "ForwardsZone.h"
|
|
|
|
|
2018-10-28 21:53:21 +01:00
|
|
|
namespace Core::Entity
|
2018-09-24 23:48:42 +02:00
|
|
|
{
|
|
|
|
|
2018-10-28 21:53:21 +01:00
|
|
|
class SpawnGroup
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
BNpcTemplatePtr m_bNpcTemplate;
|
2018-09-24 23:48:42 +02:00
|
|
|
|
2018-10-28 21:53:21 +01:00
|
|
|
uint32_t m_level;
|
|
|
|
uint32_t m_spawnCount;
|
2018-09-24 23:48:42 +02:00
|
|
|
|
2018-10-28 21:53:21 +01:00
|
|
|
std::vector< SpawnPointPtr > m_spawnPoints;
|
2018-09-24 23:48:42 +02:00
|
|
|
|
2018-10-28 21:53:21 +01:00
|
|
|
public:
|
|
|
|
SpawnGroup();
|
2018-09-24 23:48:42 +02:00
|
|
|
|
2018-10-28 21:53:21 +01:00
|
|
|
};
|
2018-09-24 23:48:42 +02:00
|
|
|
|
2018-10-28 21:53:21 +01:00
|
|
|
}
|
2018-09-24 23:48:42 +02:00
|
|
|
|
|
|
|
#endif //SAPPHIRE_SPAWNGROUP_H
|