mirror of https://github.com/PrimeDecomp/prime.git
Forgot something....
This commit is contained in:
parent
4614b90282
commit
19c1aa3ae1
|
@ -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