2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-15 07:51:21 +00:00
2017-09-09 23:04:51 -10:00

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__