2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 17:04:55 +00:00
Files
metaforce/Runtime/Particle/CWarp.hpp
2021-04-10 01:42:06 -07:00

21 lines
425 B
C++

#pragma once
#include <vector>
#include "Runtime/RetroTypes.hpp"
#include "Runtime/Particle/CParticleGen.hpp"
namespace metaforce {
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;
};
} // namespace metaforce