1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-01 08:27:46 +00:00
sapphire/src/world/Actor/SpawnGroup.h
2019-01-02 23:40:34 +01:00

26 lines
398 B
C++

#ifndef SAPPHIRE_SPAWNGROUP_H
#define SAPPHIRE_SPAWNGROUP_H
#include "ForwardsZone.h"
namespace Sapphire::Entity
{
class SpawnGroup
{
private:
BNpcTemplatePtr m_bNpcTemplate;
uint32_t m_level;
uint32_t m_spawnCount;
std::vector< SpawnPointPtr > m_spawnPoints;
public:
SpawnGroup( uint32_t bNpcTemplateId, uint32_t level );
};
}
#endif //SAPPHIRE_SPAWNGROUP_H