Former-commit-id: fa4474b434340d15363ff2ffc91b58d2df3a62fc [formerly 8a52795fc49a847e7b558425fc03915b21139521] Former-commit-id: ac159c0cf652699400f720ef6fdad0fbf649308f
18 lines
594 B
C++
18 lines
594 B
C++
#include "ParticleGroupComponent.hpp"
|
|
// Copyright (C) 2015 Jérôme Leclercq
|
|
// This file is part of the "Nazara Development Kit"
|
|
// For conditions of distribution and use, see copyright notice in Prerequesites.hpp
|
|
|
|
namespace Ndk
|
|
{
|
|
inline ParticleGroupComponent::ParticleGroupComponent(unsigned int maxParticleCount, Nz::ParticleLayout layout) :
|
|
ParticleGroup(maxParticleCount, layout)
|
|
{
|
|
}
|
|
|
|
inline ParticleGroupComponent::ParticleGroupComponent(unsigned int maxParticleCount, Nz::ParticleDeclarationConstRef declaration) :
|
|
ParticleGroup(maxParticleCount, std::move(declaration))
|
|
{
|
|
}
|
|
}
|