2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 14:31:20 +00: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