TDME2 1.9.121
TransparentRenderFacesPool_TransparentRenderFacesPool.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
7
11
12/**
13 * Transparent render faces pool
14 * @author Andreas Drewke
15 */
17 : public Pool<TransparentRenderFace*>
18{
19public:
20 /**
21 * Public constructor
22 */
24
25protected:
26 /**
27 * Instantiate a transparent render face
28 */
30 return new TransparentRenderFace();
31 }
32
33};
Pool template class.
Definition: Pool.h:22