metaforce/Runtime/Particle/CWarp.hpp

21 lines
425 B
C++
Raw Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2015-08-20 17:06:39 -07:00
#include <vector>
#include "Runtime/RetroTypes.hpp"
#include "Runtime/Particle/CParticleGen.hpp"
2016-02-15 19:25:06 -08:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2015-08-20 17:06:39 -07:00
2018-12-07 21:30:43 -08:00
class CWarp {
2016-02-15 19:25:06 -08:00
public:
2018-12-07 21:30:43 -08:00
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;
2015-08-20 17:06:39 -07:00
};
2021-04-10 01:42:06 -07:00
} // namespace metaforce