mirror of https://github.com/AxioDL/metaforce.git
26 lines
483 B
C++
26 lines
483 B
C++
#ifndef __URDE_CWARP_HPP__
|
|
#define __URDE_CWARP_HPP__
|
|
|
|
#include "zeus/CColor.hpp"
|
|
#include "zeus/CVector3f.hpp"
|
|
#include "RetroTypes.hpp"
|
|
#include "CParticleGen.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
class CWarp
|
|
{
|
|
public:
|
|
virtual ~CWarp() = default;
|
|
virtual bool UpdateWarp()=0;
|
|
virtual void ModifyParticles(std::vector<CParticle>& particles)=0;
|
|
virtual void Activate(bool)=0;
|
|
virtual bool IsActivated()=0;
|
|
virtual FourCC Get4CharID()=0;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __URDE_CWARP_HPP__
|