GlistEngine
Loading...
Searching...
No Matches
gFireParticles.h
Go to the documentation of this file.
1/*
2 * gFireParticles.h
3 *
4 * Created on: Aug 22, 2022
5 * Author: noyan
6 */
7
8#ifndef GRAPHICS_PARTICLES_GFIREPARTICLES_H_
9#define GRAPHICS_PARTICLES_GFIREPARTICLES_H_
10
11#include "gBaseParticles.h"
12#include "gImage.h"
13
14
16public:
18 virtual ~gFireParticles();
19
20 void init(int particleNum);
21 void resetParticle(int particleNo);
22
23 void setPosition(float x, float y, float z);
24
25private:
26 std::string getFlameImageData();
27 gImage tex;
28 glm::vec3 pos;
29};
30
31#endif /* GRAPHICS_PARTICLES_GFIREPARTICLES_H_ */
Definition gBaseParticles.h:43
Definition gFireParticles.h:15
void setPosition(float x, float y, float z)
void init(int particleNum)
void resetParticle(int particleNo)
virtual ~gFireParticles()
Definition gImage.h:34