Add CFlameWarp

Former-commit-id: 318c1e0b7f
This commit is contained in:
Henrique Gemignani Passos Lima
2022-11-27 03:43:52 +02:00
parent bd758edeb9
commit 16f63c89a7
7 changed files with 229 additions and 21 deletions

View File

@@ -1,18 +1,24 @@
#ifndef _CWARP
#define _CWARP
#include "Kyoto/SObjectTag.hpp"
#include "rstl/vector.hpp"
class CParticle;
class CColor;
class CVector3f;
class CWarp {
public:
virtual ~CWarp();
virtual bool UpdateWarp() = 0;
virtual void ModifyParticles(const rstl::vector< CParticle >& particles) = 0;
virtual void ModifyParticles(int particleCount, int stripe, int*, CVector3f* particlePos,
CVector3f* particlePrevPos, CVector3f* particleVelocity,
CColor* color, float* lineLengthOrSize, float* lineWidthOrRota) = 0;
virtual void Activate(bool) = 0;
virtual bool IsActivated() = 0;
virtual int Get4CharID() = 0;
virtual FourCC Get4CharID() = 0;
};
#endif // _CWARP