mirror of https://github.com/PrimeDecomp/prime.git
parent
ecac640472
commit
477189a490
|
@ -0,0 +1,16 @@
|
|||
#ifndef __CWARP_HPP__
|
||||
#define __CWARP_HPP__
|
||||
|
||||
#include "rstl/vector.hpp"
|
||||
class CParticle;
|
||||
class CWarp {
|
||||
public:
|
||||
virtual ~CWarp();
|
||||
virtual bool UpdateWarp() = 0;
|
||||
virtual void ModifyParticles(const rstl::vector<CParticle>& particles) = 0;
|
||||
virtual void Activate(bool) = 0;
|
||||
virtual bool IsActivated() =0;
|
||||
virtual int Get4CharID() = 0;
|
||||
};
|
||||
|
||||
#endif // __CWARP_HPP__
|
|
@ -0,0 +1,3 @@
|
|||
#include "Kyoto/Particles/CWarp.hpp"
|
||||
|
||||
CWarp::~CWarp() {}
|
Loading…
Reference in New Issue