mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-02 16:57:47 +00:00
28 lines
347 B
C++
28 lines
347 B
C++
#ifndef SAPPHIRE_SPAWNGROUP_H
|
|
#define SAPPHIRE_SPAWNGROUP_H
|
|
|
|
#include "ForwardsZone.h"
|
|
|
|
namespace Core {
|
|
namespace Entity {
|
|
|
|
class SpawnGroup
|
|
{
|
|
private:
|
|
BNpcTemplatePtr m_bNpcTemplate;
|
|
|
|
uint32_t m_level;
|
|
uint32_t m_spawnCount;
|
|
|
|
std::vector< SpawnPointPtr > m_spawnPoints;
|
|
|
|
public:
|
|
SpawnGroup();
|
|
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
|
|
#endif //SAPPHIRE_SPAWNGROUP_H
|