Forgot something....

Former-commit-id: 19c1aa3ae1
This commit is contained in:
Phillip Stephens 2022-10-02 18:16:06 -07:00
parent ecac640472
commit 477189a490
2 changed files with 19 additions and 0 deletions

View File

@ -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__

View File

@ -0,0 +1,3 @@
#include "Kyoto/Particles/CWarp.hpp"
CWarp::~CWarp() {}