Files
squidout/include/Physics/CParticleEmitter.h
T
2015-10-07 15:45:50 +02:00

25 lines
401 B
C++
Executable File

#ifndef COMPONENTS_PARTICLEEMITTER_H__
#define COMPONENTS_PARTICLEEMITTER_H__
#include "Core/Component.h"
namespace dd
{
namespace Components
{
struct ParticleEmitter : public Component
{
int Amount = 10.f;
float InitialSpeed = 1.f;
double SpawnRate = 1.f;
double TimeSinceLastSpawn = 0;
//System variables
float GravityScale = 1.0f;
};
}
}
#endif