1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-01 16:37:45 +00:00
sapphire/src/world/Actor/SpawnGroup.h

27 lines
398 B
C
Raw Normal View History

#ifndef SAPPHIRE_SPAWNGROUP_H
#define SAPPHIRE_SPAWNGROUP_H
#include "ForwardsZone.h"
2018-12-31 13:54:31 +01:00
namespace Sapphire::Entity
{
2018-10-28 21:53:21 +01:00
class SpawnGroup
{
private:
BNpcTemplatePtr m_bNpcTemplate;
2018-10-28 21:53:21 +01:00
uint32_t m_level;
uint32_t m_spawnCount;
2018-10-28 21:53:21 +01:00
std::vector< SpawnPointPtr > m_spawnPoints;
2018-10-28 21:53:21 +01:00
public:
2019-01-02 23:40:34 +01:00
SpawnGroup( uint32_t bNpcTemplateId, uint32_t level );
2018-10-28 21:53:21 +01:00
};
2018-10-28 21:53:21 +01:00
}
#endif //SAPPHIRE_SPAWNGROUP_H