mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-02 00:47:45 +00:00
29 lines
347 B
C
29 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
|