aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/Graphics/particles/je_particle_pool.h
blob: 46cd73a53deb897ecda6c18d67db8a5e937a3305 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef __JE_PARTICLE_BATCH_H__
#define __JE_PARTICLE_BATCH_H__

#include "../../common/je_pool.hpp"

#include "je_particle.h"

namespace JinEngine
{
    namespace Graphics
    {
        namespace Particles
        {

            ///
            /// Particle pool for reducing memory fragmentation.
            ///
            typedef Pool<Particle> ParticlePool;

        } // namespace Particles
    } // namespace Graphics
} // namespace JinEngine

#endif