2019-12-12 17:32:41 +01:00
|
|
|
// Copyright (C) 2002-2012 Nikolaus Gebhardt
|
|
|
|
// This file is part of the "Irrlicht Engine".
|
|
|
|
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
|
|
|
|
2021-08-27 17:03:34 +02:00
|
|
|
#ifndef IRR_I_PARTICLE_BOX_EMITTER_H_INCLUDED
|
|
|
|
#define IRR_I_PARTICLE_BOX_EMITTER_H_INCLUDED
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
#include "IParticleEmitter.h"
|
|
|
|
#include "aabbox3d.h"
|
|
|
|
|
|
|
|
namespace irr
|
|
|
|
{
|
|
|
|
namespace scene
|
|
|
|
{
|
|
|
|
|
|
|
|
//! A particle emitter which emits particles from a box shaped space
|
|
|
|
class IParticleBoxEmitter : public IParticleEmitter
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
//! Set the box shape
|
|
|
|
virtual void setBox( const core::aabbox3df& box ) = 0;
|
|
|
|
|
|
|
|
//! Get the box shape set
|
|
|
|
virtual const core::aabbox3df& getBox() const = 0;
|
|
|
|
|
|
|
|
//! Get emitter type
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual E_PARTICLE_EMITTER_TYPE getType() const IRR_OVERRIDE { return EPET_BOX; }
|
2019-12-12 17:32:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace scene
|
|
|
|
} // end namespace irr
|
|
|
|
|
|
|
|
#endif
|